/home/runner/work/slang/slang/source/core/slang-list.h
Line | Count | Source (jump to first uncovered line) |
1 | | #ifndef SLANG_CORE_LIST_H |
2 | | #define SLANG_CORE_LIST_H |
3 | | |
4 | | #include "slang-allocator.h" |
5 | | #include "slang-array-view.h" |
6 | | #include "slang-math.h" |
7 | | #include "slang.h" |
8 | | |
9 | | #include <algorithm> |
10 | | #include <new> |
11 | | #include <type_traits> |
12 | | |
13 | | |
14 | | namespace Slang |
15 | | { |
16 | | // List is container of values of a type held consecutively in memory (much like std::vector) |
17 | | // |
18 | | // Note that in this implementation, the underlying memory is backed via an allocation of |
19 | | // T[capacity] This means that all values have to be in a valid state *even if they are not used* |
20 | | // (ie indices >= m_count must be valid) |
21 | | // |
22 | | // Also note this implementation does not necessarily 'initialize' an element which is no longer |
23 | | // used, and this may lead to surprising behavior. Say the list contains a single smart pointer, and |
24 | | // the last element is removed (say with removeLast). The smart pointer will *not* be released. The |
25 | | // smart pointer will be released if the that index is used (via say an add) or the List goes out of |
26 | | // scope. |
27 | | template<typename T, typename TAllocator = StandardAllocator> |
28 | | class List |
29 | | { |
30 | | private: |
31 | | static const Index kInitialCount = 16; |
32 | | |
33 | | public: |
34 | | typedef List ThisType; |
35 | | |
36 | | List() |
37 | 64.8M | : m_buffer(nullptr), m_count(0), m_capacity(0) |
38 | 64.8M | { |
39 | 64.8M | } _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 33 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 33 | { | 39 | 33 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 528 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 528 | { | 39 | 528 | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.01k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.01k | { | 39 | 2.01k | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.30k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.30k | { | 39 | 3.30k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 36 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 36 | { | 39 | 36 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 36 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 36 | { | 39 | 36 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 21.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 21.5k | { | 39 | 21.5k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7.72k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7.72k | { | 39 | 7.72k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 49.4k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 49.4k | { | 39 | 49.4k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 279k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 279k | { | 39 | 279k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.17M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.17M | { | 39 | 1.17M | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 19.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 19.9k | { | 39 | 19.9k | } |
_ZN5Slang4ListImNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 36.4M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 36.4M | { | 39 | 36.4M | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 163 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 163 | { | 39 | 163 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 244k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 244k | { | 39 | 244k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 207k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 207k | { | 39 | 207k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.61k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.61k | { | 39 | 1.61k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 206k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 206k | { | 39 | 206k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 56.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 56.6k | { | 39 | 56.6k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 36 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 36 | { | 39 | 36 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 802k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 802k | { | 39 | 802k | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10.0k | { | 39 | 10.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 39.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 39.0k | { | 39 | 39.0k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.42k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.42k | { | 39 | 6.42k | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 213 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 213 | { | 39 | 213 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 11.4k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 11.4k | { | 39 | 11.4k | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12 | { | 39 | 12 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12 | { | 39 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 46.4k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 46.4k | { | 39 | 46.4k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 188k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 188k | { | 39 | 188k | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 33 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 33 | { | 39 | 33 | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.19k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.19k | { | 39 | 1.19k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 827k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 827k | { | 39 | 827k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8.51k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8.51k | { | 39 | 8.51k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 29.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 29.5k | { | 39 | 29.5k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 296k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 296k | { | 39 | 296k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 848 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 848 | { | 39 | 848 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 20 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 20 | { | 39 | 20 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 565 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 565 | { | 39 | 565 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 17 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 17 | { | 39 | 17 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 534 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 534 | { | 39 | 534 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 565 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 565 | { | 39 | 565 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 489 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 489 | { | 39 | 489 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 99.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 99.9k | { | 39 | 99.9k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.48k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.48k | { | 39 | 1.48k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 835k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 835k | { | 39 | 835k | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.50k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.50k | { | 39 | 1.50k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5.03k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5.03k | { | 39 | 5.03k | } |
_ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 410 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 410 | { | 39 | 410 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.25k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.25k | { | 39 | 1.25k | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 167 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 167 | { | 39 | 167 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.50k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.50k | { | 39 | 1.50k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 169k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 169k | { | 39 | 169k | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.31k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.31k | { | 39 | 2.31k | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.15k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.15k | { | 39 | 6.15k | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 67 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 67 | { | 39 | 67 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 57.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 57.3k | { | 39 | 57.3k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 433 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 433 | { | 39 | 433 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 433 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 433 | { | 39 | 433 | } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 433 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 433 | { | 39 | 433 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35.8k | { | 39 | 35.8k | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 38.7k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 38.7k | { | 39 | 38.7k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 50.4k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 50.4k | { | 39 | 50.4k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 90 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 90 | { | 39 | 90 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 125 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 125 | { | 39 | 125 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 100 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 100 | { | 39 | 100 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 146 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 146 | { | 39 | 146 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 146 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 146 | { | 39 | 146 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 41.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 41.5k | { | 39 | 41.5k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 249 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 249 | { | 39 | 249 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 17.2M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 17.2M | { | 39 | 17.2M | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 16 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 16 | { | 39 | 16 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48.6k | { | 39 | 48.6k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5.87k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5.87k | { | 39 | 5.87k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 216 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 216 | { | 39 | 216 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 9.34k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 9.34k | { | 39 | 9.34k | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 273 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 273 | { | 39 | 273 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 145 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 145 | { | 39 | 145 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 70 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 70 | { | 39 | 70 | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 216 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 216 | { | 39 | 216 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.19k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.19k | { | 39 | 1.19k | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.38k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.38k | { | 39 | 1.38k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 37 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 37 | { | 39 | 37 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 79 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 79 | { | 39 | 79 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 418 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 418 | { | 39 | 418 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 383 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 383 | { | 39 | 383 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 31 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 31 | { | 39 | 31 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.12M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.12M | { | 39 | 1.12M | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 583k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 583k | { | 39 | 583k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 424 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 424 | { | 39 | 424 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 249 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 249 | { | 39 | 249 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_EC2Ev Line | Count | Source | 37 | 25 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 25 | { | 39 | 25 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 90.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 90.9k | { | 39 | 90.9k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 25 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 25 | { | 39 | 25 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 517 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 517 | { | 39 | 517 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 50 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 50 | { | 39 | 50 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.50k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.50k | { | 39 | 1.50k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 15 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 15 | { | 39 | 15 | } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 268 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 268 | { | 39 | 268 | } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 84 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 84 | { | 39 | 84 | } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 219 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 219 | { | 39 | 219 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 31 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 31 | { | 39 | 31 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 656 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 656 | { | 39 | 656 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 949 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 949 | { | 39 | 949 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 203 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 203 | { | 39 | 203 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 214k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 214k | { | 39 | 214k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 101 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 101 | { | 39 | 101 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 65 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 65 | { | 39 | 65 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42.6k | { | 39 | 42.6k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42.6k | { | 39 | 42.6k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.79k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.79k | { | 39 | 6.79k | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5.86k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5.86k | { | 39 | 5.86k | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 315 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 315 | { | 39 | 315 | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.55k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.55k | { | 39 | 1.55k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 52 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 52 | { | 39 | 52 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 119 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 119 | { | 39 | 119 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 65 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 65 | { | 39 | 65 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 82.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 82.9k | { | 39 | 82.9k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 255 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 255 | { | 39 | 255 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 165 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 165 | { | 39 | 165 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13.9k | { | 39 | 13.9k | } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 11 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 11 | { | 39 | 11 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 957 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 957 | { | 39 | 957 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 598 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 598 | { | 39 | 598 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 19 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 19 | { | 39 | 19 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 866 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 866 | { | 39 | 866 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.45k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.45k | { | 39 | 1.45k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 310 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 310 | { | 39 | 310 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 91.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 91.8k | { | 39 | 91.8k | } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 278 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 278 | { | 39 | 278 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 681 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 681 | { | 39 | 681 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 421 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 421 | { | 39 | 421 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12 | { | 39 | 12 | } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13.9k | { | 39 | 13.9k | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 310 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 310 | { | 39 | 310 | } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8 | { | 39 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18 | { | 39 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 111k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 111k | { | 39 | 111k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 452k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 452k | { | 39 | 452k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 452k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 452k | { | 39 | 452k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12.0k | { | 39 | 12.0k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.62k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.62k | { | 39 | 3.62k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 278 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 278 | { | 39 | 278 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.86k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.86k | { | 39 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 504 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 504 | { | 39 | 504 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 146 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 146 | { | 39 | 146 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 146 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 146 | { | 39 | 146 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 738 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 738 | { | 39 | 738 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.44k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.44k | { | 39 | 2.44k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18.3k | { | 39 | 18.3k | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 91.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 91.8k | { | 39 | 91.8k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 39.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 39.6k | { | 39 | 39.6k | } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 206 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 206 | { | 39 | 206 | } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 37 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 37 | { | 39 | 37 | } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5 | { | 39 | 5 | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 1.04k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.04k | { | 39 | 1.04k | } |
_ZN5Slang4ListIPvNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.06M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.06M | { | 39 | 1.06M | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.04k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.04k | { | 39 | 1.04k | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.04k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.04k | { | 39 | 1.04k | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 197k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 197k | { | 39 | 197k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.63k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.63k | { | 39 | 1.63k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 54 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 54 | { | 39 | 54 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 114 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 114 | { | 39 | 114 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 133 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 133 | { | 39 | 133 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 139 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 139 | { | 39 | 139 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 354 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 354 | { | 39 | 354 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 63 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 63 | { | 39 | 63 | } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24 | { | 39 | 24 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42 | { | 39 | 42 | } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 652 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 652 | { | 39 | 652 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 940 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 940 | { | 39 | 940 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 944 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 944 | { | 39 | 944 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 395 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 395 | { | 39 | 395 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 395 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 395 | { | 39 | 395 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28.6k | { | 39 | 28.6k | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13.6k | { | 39 | 13.6k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 701 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 701 | { | 39 | 701 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 492 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 492 | { | 39 | 492 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 214 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 214 | { | 39 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 214 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 214 | { | 39 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 214 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 214 | { | 39 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 214 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 214 | { | 39 | 214 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 72 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 72 | { | 39 | 72 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.44k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.44k | { | 39 | 1.44k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 397 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 397 | { | 39 | 397 | } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 397 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 397 | { | 39 | 397 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 388 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 388 | { | 39 | 388 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18.0k | { | 39 | 18.0k | } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 388 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 388 | { | 39 | 388 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.72k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.72k | { | 39 | 3.72k | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 971 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 971 | { | 39 | 971 | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.12k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.12k | { | 39 | 3.12k | } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8 | { | 39 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.80k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.80k | { | 39 | 2.80k | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.80k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.80k | { | 39 | 2.80k | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.00k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.00k | { | 39 | 1.00k | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 41 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 41 | { | 39 | 41 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 159 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 159 | { | 39 | 159 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 159 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 159 | { | 39 | 159 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 159 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 159 | { | 39 | 159 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 50 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 50 | { | 39 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 9 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 9 | { | 39 | 9 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 122 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 122 | { | 39 | 122 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 244k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 244k | { | 39 | 244k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.98k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.98k | { | 39 | 6.98k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 147 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 147 | { | 39 | 147 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 61 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 61 | { | 39 | 61 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 61 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 61 | { | 39 | 61 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 65 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 65 | { | 39 | 65 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 15.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 15.0k | { | 39 | 15.0k | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 457 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 457 | { | 39 | 457 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_EC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_EC2Ev Line | Count | Source | 37 | 96 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 96 | { | 39 | 96 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 463 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 463 | { | 39 | 463 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 417 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 417 | { | 39 | 417 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.27k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.27k | { | 39 | 3.27k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 190 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 190 | { | 39 | 190 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.23k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.23k | { | 39 | 1.23k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.45k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.45k | { | 39 | 1.45k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_EC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 381 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 381 | { | 39 | 381 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 850 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 850 | { | 39 | 850 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18.0k | { | 39 | 18.0k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10.9k | { | 39 | 10.9k | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.00k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.00k | { | 39 | 3.00k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.91k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.91k | { | 39 | 2.91k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 89 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 89 | { | 39 | 89 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.04k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.04k | { | 39 | 3.04k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 14.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 14.9k | { | 39 | 14.9k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEEC2Ev |
40 | | template<typename... Args> |
41 | | List(const T& val, Args... args) |
42 | 15.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
43 | 15.0k | { |
44 | 15.0k | _init(val, args...); |
45 | 15.0k | } Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ _ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2IJEEERKS1_DpT_ Line | Count | Source | 42 | 2.97k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 2.97k | { | 44 | 2.97k | _init(val, args...); | 45 | 2.97k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2IJEEERKjDpT_ Line | Count | Source | 42 | 11.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 11.5k | { | 44 | 11.5k | _init(val, args...); | 45 | 11.5k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2IJjEEERKjDpT_ Line | Count | Source | 42 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 2 | { | 44 | 2 | _init(val, args...); | 45 | 2 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ Line | Count | Source | 42 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 1 | { | 44 | 1 | _init(val, args...); | 45 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ Line | Count | Source | 42 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 1 | { | 44 | 1 | _init(val, args...); | 45 | 1 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 42 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 42 | { | 44 | 42 | _init(val, args...); | 45 | 42 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 20 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 20 | { | 44 | 20 | _init(val, args...); | 45 | 20 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_S2_EEERKS2_DpT_ Line | Count | Source | 42 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 4 | { | 44 | 4 | _init(val, args...); | 45 | 4 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2IJEEERKS1_DpT_ Line | Count | Source | 42 | 32 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 32 | { | 44 | 32 | _init(val, args...); | 45 | 32 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 29 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 29 | { | 44 | 29 | _init(val, args...); | 45 | 29 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 193 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 193 | { | 44 | 193 | _init(val, args...); | 45 | 193 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 5 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 5 | { | 44 | 5 | _init(val, args...); | 45 | 5 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 64 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 64 | { | 44 | 64 | _init(val, args...); | 45 | 64 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_7IRParamEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_15IRInterfaceTypeEEEERKS2_DpT_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 104 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 104 | { | 44 | 104 | _init(val, args...); | 45 | 104 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_6IRTypeEPNS_11IRTupleTypeEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_9IRIntTypeEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_6IRFuncES2_S2_S2_S2_EEERKS2_DpT_ _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_17IRTargetTupleTypeEPNS_18IRNativeStringTypeES9_EEERKS2_DpT_ Line | Count | Source | 42 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 3 | { | 44 | 3 | _init(val, args...); | 45 | 3 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_S2_S2_EEERKS2_DpT_ Line | Count | Source | 42 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 3 | { | 44 | 3 | _init(val, args...); | 45 | 3 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_17IRTargetTupleTypeEEEERKS2_DpT_ Line | Count | Source | 42 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 3 | { | 44 | 3 | _init(val, args...); | 45 | 3 | } |
|
46 | | List(const List<T>& list) |
47 | 919k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
48 | 919k | { |
49 | 919k | this->operator=(list); |
50 | 919k | } Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEC2ERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEC2ERKS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 30 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 30 | { | 49 | 30 | this->operator=(list); | 50 | 30 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 346k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 346k | { | 49 | 346k | this->operator=(list); | 50 | 346k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 89.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 89.5k | { | 49 | 89.5k | this->operator=(list); | 50 | 89.5k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 25 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 25 | { | 49 | 25 | this->operator=(list); | 50 | 25 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 174 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 174 | { | 49 | 174 | this->operator=(list); | 50 | 174 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEC2ERKS3_ _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 6 | { | 49 | 6 | this->operator=(list); | 50 | 6 | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 8 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 8 | { | 49 | 8 | this->operator=(list); | 50 | 8 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 2.91k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 2.91k | { | 49 | 2.91k | this->operator=(list); | 50 | 2.91k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEC2ERKS3_ _ZN5Slang4ListIlNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 283 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 283 | { | 49 | 283 | this->operator=(list); | 50 | 283 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 3.51k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3.51k | { | 49 | 3.51k | this->operator=(list); | 50 | 3.51k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2ERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEC2ERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 5.21k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 5.21k | { | 49 | 5.21k | this->operator=(list); | 50 | 5.21k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 309 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 309 | { | 49 | 309 | this->operator=(list); | 50 | 309 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 570 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 570 | { | 49 | 570 | this->operator=(list); | 50 | 570 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 404k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 404k | { | 49 | 404k | this->operator=(list); | 50 | 404k | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 32 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 32 | { | 49 | 32 | this->operator=(list); | 50 | 32 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 714 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 714 | { | 49 | 714 | this->operator=(list); | 50 | 714 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 26 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 26 | { | 49 | 26 | this->operator=(list); | 50 | 26 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 1.78k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 1.78k | { | 49 | 1.78k | this->operator=(list); | 50 | 1.78k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 89 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 89 | { | 49 | 89 | this->operator=(list); | 50 | 89 | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 713 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 713 | { | 49 | 713 | this->operator=(list); | 50 | 713 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 3.62k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3.62k | { | 49 | 3.62k | this->operator=(list); | 50 | 3.62k | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 47.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 47.3k | { | 49 | 47.3k | this->operator=(list); | 50 | 47.3k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 54 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 54 | { | 49 | 54 | this->operator=(list); | 50 | 54 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEC2ERKS5_ Line | Count | Source | 47 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 7 | { | 49 | 7 | this->operator=(list); | 50 | 7 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 10.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 10.5k | { | 49 | 10.5k | this->operator=(list); | 50 | 10.5k | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 48 | { | 49 | 48 | this->operator=(list); | 50 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEC2ERKS5_ Line | Count | Source | 47 | 395 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 395 | { | 49 | 395 | this->operator=(list); | 50 | 395 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 1 | { | 49 | 1 | this->operator=(list); | 50 | 1 | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 279 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 279 | { | 49 | 279 | this->operator=(list); | 50 | 279 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEC2ERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEC2ERKS5_ Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEC2ERKS4_ Unexecuted instantiation: _ZN5Slang4ListImNS_17StandardAllocatorEEC2ERKS2_ _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3 | { | 49 | 3 | this->operator=(list); | 50 | 3 | } |
|
51 | | List(List<T>&& list) |
52 | 98.2k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
53 | 98.2k | { |
54 | 98.2k | this->operator=(static_cast<List<T>&&>(list)); |
55 | 98.2k | } _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 7 | { | 54 | 7 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 7 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 52.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 52.8k | { | 54 | 52.8k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 52.8k | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 59 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 59 | { | 54 | 59 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 59 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2EOS3_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 22.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 22.0k | { | 54 | 22.0k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 22.0k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2EOS4_ _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 32 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 32 | { | 54 | 32 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 32 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 278 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 278 | { | 54 | 278 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 278 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 22.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 22.9k | { | 54 | 22.9k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 22.9k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEC2EOS4_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 19 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 19 | { | 54 | 19 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2EOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEC2EOS4_ |
56 | | List(ArrayView<T> view) |
57 | | : List() |
58 | | { |
59 | | addRange(view); |
60 | | } |
61 | | static List<T> makeRepeated(const T& val, Index count) |
62 | 3.04k | { |
63 | 3.04k | List<T> rs; |
64 | 3.04k | rs.setCount(count); |
65 | 13.1k | for (Index i = 0; i < count; i++) |
66 | 10.0k | rs[i] = val; |
67 | 3.04k | return rs; |
68 | 3.04k | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12makeRepeatedERKS2_l Line | Count | Source | 62 | 3.02k | { | 63 | 3.02k | List<T> rs; | 64 | 3.02k | rs.setCount(count); | 65 | 13.0k | for (Index i = 0; i < count; i++) | 66 | 10.0k | rs[i] = val; | 67 | 3.02k | return rs; | 68 | 3.02k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE12makeRepeatedERKS2_l Line | Count | Source | 62 | 13 | { | 63 | 13 | List<T> rs; | 64 | 13 | rs.setCount(count); | 65 | 46 | for (Index i = 0; i < count; i++) | 66 | 33 | rs[i] = val; | 67 | 13 | return rs; | 68 | 13 | } |
|
69 | 61.5M | ~List() { _deallocateBuffer(); }_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 38.5k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 30 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.42k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.90k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 33 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 33 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 473 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.4k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListImNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 32.3M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.88k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIjNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 65.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 270k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.24M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.2k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 163 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 205k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 178k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.52k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 259k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 56.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 34 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 554 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 698k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10.0k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 38.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIbNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 213 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.42k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.4k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 12 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 12 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 46.4k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 188k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 33 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.19k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 827k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8.15k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 375k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 296k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 848 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 20 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 565 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 534 | ~List() { _deallocateBuffer(); } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 565 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 99.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.48k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 835k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.44k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7.94k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 410 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.64k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 168 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.44k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 175k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.30k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIlNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 48.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.08k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 67 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 63.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 433 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 433 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 433 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35.7k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.23k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 90 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 125 | ~List() { _deallocateBuffer(); } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 100 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 146 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 17 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 146 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 17.6M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 249 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 41.6k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 118k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 216 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.44k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIcNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 9.34k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 271 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 145 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 73 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 216 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.13k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.27k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 34 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 76 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 418 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 383 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 31 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.12M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 583k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 482 | ~List() { _deallocateBuffer(); } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_ED2Ev Line | Count | Source | 69 | 25 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 249 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 90.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 25 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.23k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 50 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 949 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.50k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 15 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 268 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 84 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 219 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 31 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 688 | ~List() { _deallocateBuffer(); } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 203 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 214k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 101 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 65 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5.86k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.79k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.44k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 315 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 52 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.55k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 65 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 119 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 82.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 255 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 165 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 957 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 598 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 19 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 866 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.45k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 310 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 91.8k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 421 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 959 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 278 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 12 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 310 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 111k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 452k | ~List() { _deallocateBuffer(); } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 452k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 12.7k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7.24k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 278 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.86k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 504 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 146 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 146 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 738 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.3k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 91.8k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 39.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 206 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 37 | ~List() { _deallocateBuffer(); } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPvNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.05M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 1.03k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.03k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.03k | ~List() { _deallocateBuffer(); } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 197k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.63k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 108 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 114 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 152 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 139 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 362 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 63 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 490 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 96 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 940 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 944 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 393 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 393 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 701 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 439 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.45k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 214 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 214 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 214 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 214 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 72 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.46k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 395 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 395 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 388 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.70k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 967 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.11k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 388 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.80k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.80k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 256 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 40 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 159 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 159 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 159 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 50 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 9 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 118 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 244k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 147 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.98k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 57 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 61 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 65 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 14.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 405 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_ED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_ED2Ev Line | Count | Source | 69 | 12 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 463 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 417 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.27k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 190 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 851 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_ED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 381 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 89 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.00k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.91k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.04k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13.9k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_7OperandENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_9EnumerantENS_17StandardAllocatorEED2Ev |
70 | | List<T>& operator=(const List<T>& list) |
71 | 20.0M | { |
72 | 20.0M | clearAndDeallocate(); |
73 | 20.0M | addRange(list); |
74 | 20.0M | return *this; |
75 | 20.0M | } _ZN5Slang4ListImNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 19.0M | { | 72 | 19.0M | clearAndDeallocate(); | 73 | 19.0M | addRange(list); | 74 | 19.0M | return *this; | 75 | 19.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 317 | { | 72 | 317 | clearAndDeallocate(); | 73 | 317 | addRange(list); | 74 | 317 | return *this; | 75 | 317 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 42.0k | { | 72 | 42.0k | clearAndDeallocate(); | 73 | 42.0k | addRange(list); | 74 | 42.0k | return *this; | 75 | 42.0k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 25.7k | { | 72 | 25.7k | clearAndDeallocate(); | 73 | 25.7k | addRange(list); | 74 | 25.7k | return *this; | 75 | 25.7k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 3.04k | { | 72 | 3.04k | clearAndDeallocate(); | 73 | 3.04k | addRange(list); | 74 | 3.04k | return *this; | 75 | 3.04k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 7.63k | { | 72 | 7.63k | clearAndDeallocate(); | 73 | 7.63k | addRange(list); | 74 | 7.63k | return *this; | 75 | 7.63k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 7.35k | { | 72 | 7.35k | clearAndDeallocate(); | 73 | 7.35k | addRange(list); | 74 | 7.35k | return *this; | 75 | 7.35k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 404k | { | 72 | 404k | clearAndDeallocate(); | 73 | 404k | addRange(list); | 74 | 404k | return *this; | 75 | 404k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 290 | { | 72 | 290 | clearAndDeallocate(); | 73 | 290 | addRange(list); | 74 | 290 | return *this; | 75 | 290 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 16.0k | { | 72 | 16.0k | clearAndDeallocate(); | 73 | 16.0k | addRange(list); | 74 | 16.0k | return *this; | 75 | 16.0k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 346k | { | 72 | 346k | clearAndDeallocate(); | 73 | 346k | addRange(list); | 74 | 346k | return *this; | 75 | 346k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 90.0k | { | 72 | 90.0k | clearAndDeallocate(); | 73 | 90.0k | addRange(list); | 74 | 90.0k | return *this; | 75 | 90.0k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 25 | { | 72 | 25 | clearAndDeallocate(); | 73 | 25 | addRange(list); | 74 | 25 | return *this; | 75 | 25 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 104 | { | 72 | 104 | clearAndDeallocate(); | 73 | 104 | addRange(list); | 74 | 104 | return *this; | 75 | 104 | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 8 | { | 72 | 8 | clearAndDeallocate(); | 73 | 8 | addRange(list); | 74 | 8 | return *this; | 75 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 5.84k | { | 72 | 5.84k | clearAndDeallocate(); | 73 | 5.84k | addRange(list); | 74 | 5.84k | return *this; | 75 | 5.84k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 1 | { | 72 | 1 | clearAndDeallocate(); | 73 | 1 | addRange(list); | 74 | 1 | return *this; | 75 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 1 | { | 72 | 1 | clearAndDeallocate(); | 73 | 1 | addRange(list); | 74 | 1 | return *this; | 75 | 1 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 848 | { | 72 | 848 | clearAndDeallocate(); | 73 | 848 | addRange(list); | 74 | 848 | return *this; | 75 | 848 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEaSERKS5_ Line | Count | Source | 71 | 400 | { | 72 | 400 | clearAndDeallocate(); | 73 | 400 | addRange(list); | 74 | 400 | return *this; | 75 | 400 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 122 | { | 72 | 122 | clearAndDeallocate(); | 73 | 122 | addRange(list); | 74 | 122 | return *this; | 75 | 122 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 26 | { | 72 | 26 | clearAndDeallocate(); | 73 | 26 | addRange(list); | 74 | 26 | return *this; | 75 | 26 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 963 | { | 72 | 963 | clearAndDeallocate(); | 73 | 963 | addRange(list); | 74 | 963 | return *this; | 75 | 963 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 1.78k | { | 72 | 1.78k | clearAndDeallocate(); | 73 | 1.78k | addRange(list); | 74 | 1.78k | return *this; | 75 | 1.78k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 89 | { | 72 | 89 | clearAndDeallocate(); | 73 | 89 | addRange(list); | 74 | 89 | return *this; | 75 | 89 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 713 | { | 72 | 713 | clearAndDeallocate(); | 73 | 713 | addRange(list); | 74 | 713 | return *this; | 75 | 713 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 3.62k | { | 72 | 3.62k | clearAndDeallocate(); | 73 | 3.62k | addRange(list); | 74 | 3.62k | return *this; | 75 | 3.62k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 47.3k | { | 72 | 47.3k | clearAndDeallocate(); | 73 | 47.3k | addRange(list); | 74 | 47.3k | return *this; | 75 | 47.3k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 129 | { | 72 | 129 | clearAndDeallocate(); | 73 | 129 | addRange(list); | 74 | 129 | return *this; | 75 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 54 | { | 72 | 54 | clearAndDeallocate(); | 73 | 54 | addRange(list); | 74 | 54 | return *this; | 75 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 19 | { | 72 | 19 | clearAndDeallocate(); | 73 | 19 | addRange(list); | 74 | 19 | return *this; | 75 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 19 | { | 72 | 19 | clearAndDeallocate(); | 73 | 19 | addRange(list); | 74 | 19 | return *this; | 75 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEaSERKS5_ Line | Count | Source | 71 | 7 | { | 72 | 7 | clearAndDeallocate(); | 73 | 7 | addRange(list); | 74 | 7 | return *this; | 75 | 7 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 7 | { | 72 | 7 | clearAndDeallocate(); | 73 | 7 | addRange(list); | 74 | 7 | return *this; | 75 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 215 | { | 72 | 215 | clearAndDeallocate(); | 73 | 215 | addRange(list); | 74 | 215 | return *this; | 75 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 8 | { | 72 | 8 | clearAndDeallocate(); | 73 | 8 | addRange(list); | 74 | 8 | return *this; | 75 | 8 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 4 | { | 72 | 4 | clearAndDeallocate(); | 73 | 4 | addRange(list); | 74 | 4 | return *this; | 75 | 4 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 1 | { | 72 | 1 | clearAndDeallocate(); | 73 | 1 | addRange(list); | 74 | 1 | return *this; | 75 | 1 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 1 | { | 72 | 1 | clearAndDeallocate(); | 73 | 1 | addRange(list); | 74 | 1 | return *this; | 75 | 1 | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 280 | { | 72 | 280 | clearAndDeallocate(); | 73 | 280 | addRange(list); | 74 | 280 | return *this; | 75 | 280 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 416 | { | 72 | 416 | clearAndDeallocate(); | 73 | 416 | addRange(list); | 74 | 416 | return *this; | 75 | 416 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEaSERKS5_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 208 | { | 72 | 208 | clearAndDeallocate(); | 73 | 208 | addRange(list); | 74 | 208 | return *this; | 75 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 9 | { | 72 | 9 | clearAndDeallocate(); | 73 | 9 | addRange(list); | 74 | 9 | return *this; | 75 | 9 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 3 | { | 72 | 3 | clearAndDeallocate(); | 73 | 3 | addRange(list); | 74 | 3 | return *this; | 75 | 3 | } |
|
76 | | |
77 | | List<T>& operator=(List<T>&& list) |
78 | 4.05M | { |
79 | | // Could just do a swap here, and memory would be freed on rhs dtor |
80 | | |
81 | 4.05M | _deallocateBuffer(); |
82 | 4.05M | m_count = list.m_count; |
83 | 4.05M | m_capacity = list.m_capacity; |
84 | 4.05M | m_buffer = list.m_buffer; |
85 | | |
86 | 4.05M | list.m_buffer = nullptr; |
87 | 4.05M | list.m_count = 0; |
88 | 4.05M | list.m_capacity = 0; |
89 | 4.05M | return *this; |
90 | 4.05M | } _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 15.2k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 15.2k | _deallocateBuffer(); | 82 | 15.2k | m_count = list.m_count; | 83 | 15.2k | m_capacity = list.m_capacity; | 84 | 15.2k | m_buffer = list.m_buffer; | 85 | | | 86 | 15.2k | list.m_buffer = nullptr; | 87 | 15.2k | list.m_count = 0; | 88 | 15.2k | list.m_capacity = 0; | 89 | 15.2k | return *this; | 90 | 15.2k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 35.1k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 35.1k | _deallocateBuffer(); | 82 | 35.1k | m_count = list.m_count; | 83 | 35.1k | m_capacity = list.m_capacity; | 84 | 35.1k | m_buffer = list.m_buffer; | 85 | | | 86 | 35.1k | list.m_buffer = nullptr; | 87 | 35.1k | list.m_count = 0; | 88 | 35.1k | list.m_capacity = 0; | 89 | 35.1k | return *this; | 90 | 35.1k | } |
Unexecuted instantiation: _ZN5Slang4ListIPvNS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 22.7k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 22.7k | _deallocateBuffer(); | 82 | 22.7k | m_count = list.m_count; | 83 | 22.7k | m_capacity = list.m_capacity; | 84 | 22.7k | m_buffer = list.m_buffer; | 85 | | | 86 | 22.7k | list.m_buffer = nullptr; | 87 | 22.7k | list.m_count = 0; | 88 | 22.7k | list.m_capacity = 0; | 89 | 22.7k | return *this; | 90 | 22.7k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 35 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 35 | _deallocateBuffer(); | 82 | 35 | m_count = list.m_count; | 83 | 35 | m_capacity = list.m_capacity; | 84 | 35 | m_buffer = list.m_buffer; | 85 | | | 86 | 35 | list.m_buffer = nullptr; | 87 | 35 | list.m_count = 0; | 88 | 35 | list.m_capacity = 0; | 89 | 35 | return *this; | 90 | 35 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 102 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 102 | _deallocateBuffer(); | 82 | 102 | m_count = list.m_count; | 83 | 102 | m_capacity = list.m_capacity; | 84 | 102 | m_buffer = list.m_buffer; | 85 | | | 86 | 102 | list.m_buffer = nullptr; | 87 | 102 | list.m_count = 0; | 88 | 102 | list.m_capacity = 0; | 89 | 102 | return *this; | 90 | 102 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 108k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 108k | _deallocateBuffer(); | 82 | 108k | m_count = list.m_count; | 83 | 108k | m_capacity = list.m_capacity; | 84 | 108k | m_buffer = list.m_buffer; | 85 | | | 86 | 108k | list.m_buffer = nullptr; | 87 | 108k | list.m_count = 0; | 88 | 108k | list.m_capacity = 0; | 89 | 108k | return *this; | 90 | 108k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 569 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 569 | _deallocateBuffer(); | 82 | 569 | m_count = list.m_count; | 83 | 569 | m_capacity = list.m_capacity; | 84 | 569 | m_buffer = list.m_buffer; | 85 | | | 86 | 569 | list.m_buffer = nullptr; | 87 | 569 | list.m_count = 0; | 88 | 569 | list.m_capacity = 0; | 89 | 569 | return *this; | 90 | 569 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 2.49k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 2.49k | _deallocateBuffer(); | 82 | 2.49k | m_count = list.m_count; | 83 | 2.49k | m_capacity = list.m_capacity; | 84 | 2.49k | m_buffer = list.m_buffer; | 85 | | | 86 | 2.49k | list.m_buffer = nullptr; | 87 | 2.49k | list.m_count = 0; | 88 | 2.49k | list.m_capacity = 0; | 89 | 2.49k | return *this; | 90 | 2.49k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 6.06k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 6.06k | _deallocateBuffer(); | 82 | 6.06k | m_count = list.m_count; | 83 | 6.06k | m_capacity = list.m_capacity; | 84 | 6.06k | m_buffer = list.m_buffer; | 85 | | | 86 | 6.06k | list.m_buffer = nullptr; | 87 | 6.06k | list.m_count = 0; | 88 | 6.06k | list.m_capacity = 0; | 89 | 6.06k | return *this; | 90 | 6.06k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEaSEOS5_ Unexecuted instantiation: _ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 59 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 59 | _deallocateBuffer(); | 82 | 59 | m_count = list.m_count; | 83 | 59 | m_capacity = list.m_capacity; | 84 | 59 | m_buffer = list.m_buffer; | 85 | | | 86 | 59 | list.m_buffer = nullptr; | 87 | 59 | list.m_count = 0; | 88 | 59 | list.m_capacity = 0; | 89 | 59 | return *this; | 90 | 59 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 643 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 643 | _deallocateBuffer(); | 82 | 643 | m_count = list.m_count; | 83 | 643 | m_capacity = list.m_capacity; | 84 | 643 | m_buffer = list.m_buffer; | 85 | | | 86 | 643 | list.m_buffer = nullptr; | 87 | 643 | list.m_count = 0; | 88 | 643 | list.m_capacity = 0; | 89 | 643 | return *this; | 90 | 643 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 5.76k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 5.76k | _deallocateBuffer(); | 82 | 5.76k | m_count = list.m_count; | 83 | 5.76k | m_capacity = list.m_capacity; | 84 | 5.76k | m_buffer = list.m_buffer; | 85 | | | 86 | 5.76k | list.m_buffer = nullptr; | 87 | 5.76k | list.m_count = 0; | 88 | 5.76k | list.m_capacity = 0; | 89 | 5.76k | return *this; | 90 | 5.76k | } |
Unexecuted instantiation: _ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListIhNS_17StandardAllocatorEEaSEOS2_ _ZN5Slang4ListIlNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 3.64k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 3.64k | _deallocateBuffer(); | 82 | 3.64k | m_count = list.m_count; | 83 | 3.64k | m_capacity = list.m_capacity; | 84 | 3.64k | m_buffer = list.m_buffer; | 85 | | | 86 | 3.64k | list.m_buffer = nullptr; | 87 | 3.64k | list.m_count = 0; | 88 | 3.64k | list.m_capacity = 0; | 89 | 3.64k | return *this; | 90 | 3.64k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 278 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 278 | _deallocateBuffer(); | 82 | 278 | m_count = list.m_count; | 83 | 278 | m_capacity = list.m_capacity; | 84 | 278 | m_buffer = list.m_buffer; | 85 | | | 86 | 278 | list.m_buffer = nullptr; | 87 | 278 | list.m_count = 0; | 88 | 278 | list.m_capacity = 0; | 89 | 278 | return *this; | 90 | 278 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 33 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 33 | _deallocateBuffer(); | 82 | 33 | m_count = list.m_count; | 83 | 33 | m_capacity = list.m_capacity; | 84 | 33 | m_buffer = list.m_buffer; | 85 | | | 86 | 33 | list.m_buffer = nullptr; | 87 | 33 | list.m_count = 0; | 88 | 33 | list.m_capacity = 0; | 89 | 33 | return *this; | 90 | 33 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 70.5k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 70.5k | _deallocateBuffer(); | 82 | 70.5k | m_count = list.m_count; | 83 | 70.5k | m_capacity = list.m_capacity; | 84 | 70.5k | m_buffer = list.m_buffer; | 85 | | | 86 | 70.5k | list.m_buffer = nullptr; | 87 | 70.5k | list.m_count = 0; | 88 | 70.5k | list.m_capacity = 0; | 89 | 70.5k | return *this; | 90 | 70.5k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 64 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 64 | _deallocateBuffer(); | 82 | 64 | m_count = list.m_count; | 83 | 64 | m_capacity = list.m_capacity; | 84 | 64 | m_buffer = list.m_buffer; | 85 | | | 86 | 64 | list.m_buffer = nullptr; | 87 | 64 | list.m_count = 0; | 88 | 64 | list.m_capacity = 0; | 89 | 64 | return *this; | 90 | 64 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 19 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 19 | _deallocateBuffer(); | 82 | 19 | m_count = list.m_count; | 83 | 19 | m_capacity = list.m_capacity; | 84 | 19 | m_buffer = list.m_buffer; | 85 | | | 86 | 19 | list.m_buffer = nullptr; | 87 | 19 | list.m_count = 0; | 88 | 19 | list.m_capacity = 0; | 89 | 19 | return *this; | 90 | 19 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 534 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 534 | _deallocateBuffer(); | 82 | 534 | m_count = list.m_count; | 83 | 534 | m_capacity = list.m_capacity; | 84 | 534 | m_buffer = list.m_buffer; | 85 | | | 86 | 534 | list.m_buffer = nullptr; | 87 | 534 | list.m_count = 0; | 88 | 534 | list.m_capacity = 0; | 89 | 534 | return *this; | 90 | 534 | } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 4 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 4 | _deallocateBuffer(); | 82 | 4 | m_count = list.m_count; | 83 | 4 | m_capacity = list.m_capacity; | 84 | 4 | m_buffer = list.m_buffer; | 85 | | | 86 | 4 | list.m_buffer = nullptr; | 87 | 4 | list.m_count = 0; | 88 | 4 | list.m_capacity = 0; | 89 | 4 | return *this; | 90 | 4 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 32 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 32 | _deallocateBuffer(); | 82 | 32 | m_count = list.m_count; | 83 | 32 | m_capacity = list.m_capacity; | 84 | 32 | m_buffer = list.m_buffer; | 85 | | | 86 | 32 | list.m_buffer = nullptr; | 87 | 32 | list.m_count = 0; | 88 | 32 | list.m_capacity = 0; | 89 | 32 | return *this; | 90 | 32 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 278 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 278 | _deallocateBuffer(); | 82 | 278 | m_count = list.m_count; | 83 | 278 | m_capacity = list.m_capacity; | 84 | 278 | m_buffer = list.m_buffer; | 85 | | | 86 | 278 | list.m_buffer = nullptr; | 87 | 278 | list.m_count = 0; | 88 | 278 | list.m_capacity = 0; | 89 | 278 | return *this; | 90 | 278 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 278 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 278 | _deallocateBuffer(); | 82 | 278 | m_count = list.m_count; | 83 | 278 | m_capacity = list.m_capacity; | 84 | 278 | m_buffer = list.m_buffer; | 85 | | | 86 | 278 | list.m_buffer = nullptr; | 87 | 278 | list.m_count = 0; | 88 | 278 | list.m_capacity = 0; | 89 | 278 | return *this; | 90 | 278 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 22.9k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 22.9k | _deallocateBuffer(); | 82 | 22.9k | m_count = list.m_count; | 83 | 22.9k | m_capacity = list.m_capacity; | 84 | 22.9k | m_buffer = list.m_buffer; | 85 | | | 86 | 22.9k | list.m_buffer = nullptr; | 87 | 22.9k | list.m_count = 0; | 88 | 22.9k | list.m_capacity = 0; | 89 | 22.9k | return *this; | 90 | 22.9k | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 278 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 278 | _deallocateBuffer(); | 82 | 278 | m_count = list.m_count; | 83 | 278 | m_capacity = list.m_capacity; | 84 | 278 | m_buffer = list.m_buffer; | 85 | | | 86 | 278 | list.m_buffer = nullptr; | 87 | 278 | list.m_count = 0; | 88 | 278 | list.m_capacity = 0; | 89 | 278 | return *this; | 90 | 278 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 1.86k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 1.86k | _deallocateBuffer(); | 82 | 1.86k | m_count = list.m_count; | 83 | 1.86k | m_capacity = list.m_capacity; | 84 | 1.86k | m_buffer = list.m_buffer; | 85 | | | 86 | 1.86k | list.m_buffer = nullptr; | 87 | 1.86k | list.m_count = 0; | 88 | 1.86k | list.m_capacity = 0; | 89 | 1.86k | return *this; | 90 | 1.86k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 1.63k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 1.63k | _deallocateBuffer(); | 82 | 1.63k | m_count = list.m_count; | 83 | 1.63k | m_capacity = list.m_capacity; | 84 | 1.63k | m_buffer = list.m_buffer; | 85 | | | 86 | 1.63k | list.m_buffer = nullptr; | 87 | 1.63k | list.m_count = 0; | 88 | 1.63k | list.m_capacity = 0; | 89 | 1.63k | return *this; | 90 | 1.63k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 15 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 15 | _deallocateBuffer(); | 82 | 15 | m_count = list.m_count; | 83 | 15 | m_capacity = list.m_capacity; | 84 | 15 | m_buffer = list.m_buffer; | 85 | | | 86 | 15 | list.m_buffer = nullptr; | 87 | 15 | list.m_count = 0; | 88 | 15 | list.m_capacity = 0; | 89 | 15 | return *this; | 90 | 15 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 19 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 19 | _deallocateBuffer(); | 82 | 19 | m_count = list.m_count; | 83 | 19 | m_capacity = list.m_capacity; | 84 | 19 | m_buffer = list.m_buffer; | 85 | | | 86 | 19 | list.m_buffer = nullptr; | 87 | 19 | list.m_count = 0; | 88 | 19 | list.m_capacity = 0; | 89 | 19 | return *this; | 90 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 16 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 16 | _deallocateBuffer(); | 82 | 16 | m_count = list.m_count; | 83 | 16 | m_capacity = list.m_capacity; | 84 | 16 | m_buffer = list.m_buffer; | 85 | | | 86 | 16 | list.m_buffer = nullptr; | 87 | 16 | list.m_count = 0; | 88 | 16 | list.m_capacity = 0; | 89 | 16 | return *this; | 90 | 16 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 212 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 212 | _deallocateBuffer(); | 82 | 212 | m_count = list.m_count; | 83 | 212 | m_capacity = list.m_capacity; | 84 | 212 | m_buffer = list.m_buffer; | 85 | | | 86 | 212 | list.m_buffer = nullptr; | 87 | 212 | list.m_count = 0; | 88 | 212 | list.m_capacity = 0; | 89 | 212 | return *this; | 90 | 212 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPKcNS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListImNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 3.75M | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 3.75M | _deallocateBuffer(); | 82 | 3.75M | m_count = list.m_count; | 83 | 3.75M | m_capacity = list.m_capacity; | 84 | 3.75M | m_buffer = list.m_buffer; | 85 | | | 86 | 3.75M | list.m_buffer = nullptr; | 87 | 3.75M | list.m_count = 0; | 88 | 3.75M | list.m_capacity = 0; | 89 | 3.75M | return *this; | 90 | 3.75M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 617 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 617 | _deallocateBuffer(); | 82 | 617 | m_count = list.m_count; | 83 | 617 | m_capacity = list.m_capacity; | 84 | 617 | m_buffer = list.m_buffer; | 85 | | | 86 | 617 | list.m_buffer = nullptr; | 87 | 617 | list.m_count = 0; | 88 | 617 | list.m_capacity = 0; | 89 | 617 | return *this; | 90 | 617 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 4.76k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 4.76k | _deallocateBuffer(); | 82 | 4.76k | m_count = list.m_count; | 83 | 4.76k | m_capacity = list.m_capacity; | 84 | 4.76k | m_buffer = list.m_buffer; | 85 | | | 86 | 4.76k | list.m_buffer = nullptr; | 87 | 4.76k | list.m_count = 0; | 88 | 4.76k | list.m_capacity = 0; | 89 | 4.76k | return *this; | 90 | 4.76k | } |
|
91 | | |
92 | 6.87M | const T* begin() const { return m_buffer; }Unexecuted instantiation: _ZNK5Slang4ListImNS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 47.4k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 794 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 6.44M | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 1 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 12.6k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 9 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 1.17k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 129 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 13.2k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 501 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 112 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 2.80k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 11.9k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIlNS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 278 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 2.80k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 1 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 125 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 18.0k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 267 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 249 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 30 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 1 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 309 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 141 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 83 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 582 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 37 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 50.1k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 790 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 13.6k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 310 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 373 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 334 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 244k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListIcNS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 3.19k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 381 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 438 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE5beginEv |
93 | 14.5M | const T* end() const { return m_buffer + m_count; }Unexecuted instantiation: _ZNK5Slang4ListImNS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 47.4k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 794 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 14.1M | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 1 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 9 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 1.17k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 129 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 13.2k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 501 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 112 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 2.80k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 11.9k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIlNS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 278 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 2.80k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 1 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 12.6k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 125 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 18.0k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 267 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 249 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 30 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 1 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 309 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 141 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 83 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 582 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 37 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 50.1k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 790 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 13.6k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 310 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 373 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 334 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 244k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 3.19k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 438 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE3endEv |
94 | | |
95 | 16.1M | T* begin() { return m_buffer; }_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 11.1M | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.20M | T* begin() { return m_buffer; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 470k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 22.1k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5.25k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 405 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10.0k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 105k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 30 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 381 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 177 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 12 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 46.3k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 286k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.44k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 110 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 347k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 848 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 544 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 568 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 565 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.05k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 426 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.03k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5.15k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 52 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 99.9k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 296k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.74k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.13k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 302 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 146 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24.8k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.85k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 58 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8.53k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.45k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 89 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 15 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 204 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 462 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E5beginEv Line | Count | Source | 95 | 146 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E5beginEv Line | Count | Source | 95 | 146 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 416 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 575 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 47 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 383 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 386k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5.44k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 412 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.52k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 249 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 15 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 314 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 268 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 32 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 62 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 307 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 214k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 101 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListImNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 16 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 284 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 65 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13.7k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 17 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 9.77k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8.11k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 52 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 216 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 162 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 82.0k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 254 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 165 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13.9k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 22 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 17 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 23 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 18.3k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 310 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.32k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 556 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 681 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13.9k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 310 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 364 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.69k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 590 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 219 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 278 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 146 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 146 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 91.8k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 36.6k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61.1k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 206 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 37 | T* begin() { return m_buffer; } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.36k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 29 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 342 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.86k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 29.6k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.53k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 214 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 839 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 710 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 423 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.45k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 33 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 208 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 553 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 791 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 9 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 16 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 15 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 36 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 50 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 36 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.06k | T* begin() { return m_buffer; } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E5beginEv Line | Count | Source | 95 | 28 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
|
96 | 15.7M | T* end() { return m_buffer + m_count; }_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 11.1M | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.20M | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 22.1k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5.25k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 405 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10.0k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 105k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 30 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 381 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 177 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 12 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 46.3k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 286k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.44k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 110 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 347k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 848 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 544 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 568 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 565 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.05k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 426 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.03k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5.15k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 52 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 99.9k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 296k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.74k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.13k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 302 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 146 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24.8k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.85k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 58 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8.49k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.45k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 89 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 15 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 204 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 462 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E3endEv Line | Count | Source | 96 | 146 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E3endEv Line | Count | Source | 96 | 146 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 416 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 575 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 47 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 383 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 386k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5.44k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 412 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.52k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 249 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 15 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 314 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 268 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 32 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 62 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 307 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 214k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 101 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE3endEv _ZN5Slang4ListImNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 16 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 284 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 65 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13.7k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 17 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 9.77k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8.11k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 52 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 216 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 162 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 82.0k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 254 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 165 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13.9k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 22 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 17 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 23 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 18.3k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 310 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.32k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 556 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 681 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13.9k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 310 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 364 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE3endEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.69k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 590 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 219 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 278 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 146 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 146 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 91.8k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 36.6k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 61.1k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 206 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 37 | T* end() { return m_buffer + m_count; } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.36k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 29 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 48 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 342 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.86k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 29.6k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.53k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 214 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 839 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 710 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 423 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.45k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 33 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 208 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 553 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 791 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 9 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 16 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 9 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 36 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 49.2k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 48 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 50 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 36 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIcNS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.06k | T* end() { return m_buffer + m_count; } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E3endEv Line | Count | Source | 96 | 28 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
|
97 | | |
98 | | const T& getFirst() const |
99 | 15 | { |
100 | 15 | SLANG_ASSERT(m_count > 0); |
101 | 15 | return m_buffer[0]; |
102 | 15 | } Unexecuted instantiation: _ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getFirstEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getFirstEv _ZNK5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 99 | 15 | { | 100 | 15 | SLANG_ASSERT(m_count > 0); | 101 | 15 | return m_buffer[0]; | 102 | 15 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8getFirstEv Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE8getFirstEv |
103 | | |
104 | | T& getFirst() |
105 | 561k | { |
106 | 561k | SLANG_ASSERT(m_count > 0); |
107 | 561k | return m_buffer[0]; |
108 | 561k | } _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 3 | { | 106 | 3 | SLANG_ASSERT(m_count > 0); | 107 | 3 | return m_buffer[0]; | 108 | 3 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 32 | { | 106 | 32 | SLANG_ASSERT(m_count > 0); | 107 | 32 | return m_buffer[0]; | 108 | 32 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8getFirstEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 560k | { | 106 | 560k | SLANG_ASSERT(m_count > 0); | 107 | 560k | return m_buffer[0]; | 108 | 560k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 20 | { | 106 | 20 | SLANG_ASSERT(m_count > 0); | 107 | 20 | return m_buffer[0]; | 108 | 20 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8getFirstEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 270 | { | 106 | 270 | SLANG_ASSERT(m_count > 0); | 107 | 270 | return m_buffer[0]; | 108 | 270 | } |
|
109 | | |
110 | | const T& getLast() const |
111 | 15 | { |
112 | 15 | SLANG_ASSERT(m_count > 0); |
113 | 15 | return m_buffer[m_count - 1]; |
114 | 15 | } Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE7getLastEv _ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 111 | 15 | { | 112 | 15 | SLANG_ASSERT(m_count > 0); | 113 | 15 | return m_buffer[m_count - 1]; | 114 | 15 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7getLastEv |
115 | | |
116 | | T& getLast() |
117 | 56.9M | { |
118 | 56.9M | SLANG_ASSERT(m_count > 0); |
119 | 56.9M | return m_buffer[m_count - 1]; |
120 | 56.9M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 53.9M | { | 118 | 53.9M | SLANG_ASSERT(m_count > 0); | 119 | 53.9M | return m_buffer[m_count - 1]; | 120 | 53.9M | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2.55k | { | 118 | 2.55k | SLANG_ASSERT(m_count > 0); | 119 | 2.55k | return m_buffer[m_count - 1]; | 120 | 2.55k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.90k | { | 118 | 1.90k | SLANG_ASSERT(m_count > 0); | 119 | 1.90k | return m_buffer[m_count - 1]; | 120 | 1.90k | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 174 | { | 118 | 174 | SLANG_ASSERT(m_count > 0); | 119 | 174 | return m_buffer[m_count - 1]; | 120 | 174 | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 4 | { | 118 | 4 | SLANG_ASSERT(m_count > 0); | 119 | 4 | return m_buffer[m_count - 1]; | 120 | 4 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 39.2k | { | 118 | 39.2k | SLANG_ASSERT(m_count > 0); | 119 | 39.2k | return m_buffer[m_count - 1]; | 120 | 39.2k | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 12 | { | 118 | 12 | SLANG_ASSERT(m_count > 0); | 119 | 12 | return m_buffer[m_count - 1]; | 120 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2.31M | { | 118 | 2.31M | SLANG_ASSERT(m_count > 0); | 119 | 2.31M | return m_buffer[m_count - 1]; | 120 | 2.31M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 26 | { | 118 | 26 | SLANG_ASSERT(m_count > 0); | 119 | 26 | return m_buffer[m_count - 1]; | 120 | 26 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 470 | { | 118 | 470 | SLANG_ASSERT(m_count > 0); | 119 | 470 | return m_buffer[m_count - 1]; | 120 | 470 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 25 | { | 118 | 25 | SLANG_ASSERT(m_count > 0); | 119 | 25 | return m_buffer[m_count - 1]; | 120 | 25 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 54.6k | { | 118 | 54.6k | SLANG_ASSERT(m_count > 0); | 119 | 54.6k | return m_buffer[m_count - 1]; | 120 | 54.6k | } |
_ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 26.8k | { | 118 | 26.8k | SLANG_ASSERT(m_count > 0); | 119 | 26.8k | return m_buffer[m_count - 1]; | 120 | 26.8k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 793 | { | 118 | 793 | SLANG_ASSERT(m_count > 0); | 119 | 793 | return m_buffer[m_count - 1]; | 120 | 793 | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 26 | { | 118 | 26 | SLANG_ASSERT(m_count > 0); | 119 | 26 | return m_buffer[m_count - 1]; | 120 | 26 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2.95k | { | 118 | 2.95k | SLANG_ASSERT(m_count > 0); | 119 | 2.95k | return m_buffer[m_count - 1]; | 120 | 2.95k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 27.2k | { | 118 | 27.2k | SLANG_ASSERT(m_count > 0); | 119 | 27.2k | return m_buffer[m_count - 1]; | 120 | 27.2k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2 | { | 118 | 2 | SLANG_ASSERT(m_count > 0); | 119 | 2 | return m_buffer[m_count - 1]; | 120 | 2 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2 | { | 118 | 2 | SLANG_ASSERT(m_count > 0); | 119 | 2 | return m_buffer[m_count - 1]; | 120 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.14k | { | 118 | 1.14k | SLANG_ASSERT(m_count > 0); | 119 | 1.14k | return m_buffer[m_count - 1]; | 120 | 1.14k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 470k | { | 118 | 470k | SLANG_ASSERT(m_count > 0); | 119 | 470k | return m_buffer[m_count - 1]; | 120 | 470k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 14 | { | 118 | 14 | SLANG_ASSERT(m_count > 0); | 119 | 14 | return m_buffer[m_count - 1]; | 120 | 14 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.94k | { | 118 | 1.94k | SLANG_ASSERT(m_count > 0); | 119 | 1.94k | return m_buffer[m_count - 1]; | 120 | 1.94k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 609 | { | 118 | 609 | SLANG_ASSERT(m_count > 0); | 119 | 609 | return m_buffer[m_count - 1]; | 120 | 609 | } |
Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 21.2k | { | 118 | 21.2k | SLANG_ASSERT(m_count > 0); | 119 | 21.2k | return m_buffer[m_count - 1]; | 120 | 21.2k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 20.2k | { | 118 | 20.2k | SLANG_ASSERT(m_count > 0); | 119 | 20.2k | return m_buffer[m_count - 1]; | 120 | 20.2k | } |
|
121 | | |
122 | | void removeLast() |
123 | 55.5M | { |
124 | 55.5M | SLANG_ASSERT(m_count > 0); |
125 | 55.5M | m_count--; |
126 | 55.5M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 53.6M | { | 124 | 53.6M | SLANG_ASSERT(m_count > 0); | 125 | 53.6M | m_count--; | 126 | 53.6M | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 8 | { | 124 | 8 | SLANG_ASSERT(m_count > 0); | 125 | 8 | m_count--; | 126 | 8 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 78.1k | { | 124 | 78.1k | SLANG_ASSERT(m_count > 0); | 125 | 78.1k | m_count--; | 126 | 78.1k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 1.19M | { | 124 | 1.19M | SLANG_ASSERT(m_count > 0); | 125 | 1.19M | m_count--; | 126 | 1.19M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 470 | { | 124 | 470 | SLANG_ASSERT(m_count > 0); | 125 | 470 | m_count--; | 126 | 470 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 25 | { | 124 | 25 | SLANG_ASSERT(m_count > 0); | 125 | 25 | m_count--; | 126 | 25 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 54.6k | { | 124 | 54.6k | SLANG_ASSERT(m_count > 0); | 125 | 54.6k | m_count--; | 126 | 54.6k | } |
_ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 26.8k | { | 124 | 26.8k | SLANG_ASSERT(m_count > 0); | 125 | 26.8k | m_count--; | 126 | 26.8k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 496 | { | 124 | 496 | SLANG_ASSERT(m_count > 0); | 125 | 496 | m_count--; | 126 | 496 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 2.95k | { | 124 | 2.95k | SLANG_ASSERT(m_count > 0); | 125 | 2.95k | m_count--; | 126 | 2.95k | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 1.14k | { | 124 | 1.14k | SLANG_ASSERT(m_count > 0); | 125 | 1.14k | m_count--; | 126 | 1.14k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 470k | { | 124 | 470k | SLANG_ASSERT(m_count > 0); | 125 | 470k | m_count--; | 126 | 470k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 4 | { | 124 | 4 | SLANG_ASSERT(m_count > 0); | 125 | 4 | m_count--; | 126 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 465 | { | 124 | 465 | SLANG_ASSERT(m_count > 0); | 125 | 465 | m_count--; | 126 | 465 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 21.2k | { | 124 | 21.2k | SLANG_ASSERT(m_count > 0); | 125 | 21.2k | m_count--; | 126 | 21.2k | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 20.2k | { | 124 | 20.2k | SLANG_ASSERT(m_count > 0); | 125 | 20.2k | m_count--; | 126 | 20.2k | } |
|
127 | | |
128 | | inline void swapWith(List<T, TAllocator>& other) |
129 | 138k | { |
130 | 138k | T* buffer = m_buffer; |
131 | 138k | m_buffer = other.m_buffer; |
132 | 138k | other.m_buffer = buffer; |
133 | | |
134 | 138k | auto bufferSize = m_capacity; |
135 | 138k | m_capacity = other.m_capacity; |
136 | 138k | other.m_capacity = bufferSize; |
137 | | |
138 | 138k | auto count = m_count; |
139 | 138k | m_count = other.m_count; |
140 | 138k | other.m_count = count; |
141 | 138k | } Unexecuted instantiation: _ZN5Slang4ListImNS_17StandardAllocatorEE8swapWithERS2_ _ZN5Slang4ListIhNS_17StandardAllocatorEE8swapWithERS2_ Line | Count | Source | 129 | 12 | { | 130 | 12 | T* buffer = m_buffer; | 131 | 12 | m_buffer = other.m_buffer; | 132 | 12 | other.m_buffer = buffer; | 133 | | | 134 | 12 | auto bufferSize = m_capacity; | 135 | 12 | m_capacity = other.m_capacity; | 136 | 12 | other.m_capacity = bufferSize; | 137 | | | 138 | 12 | auto count = m_count; | 139 | 12 | m_count = other.m_count; | 140 | 12 | other.m_count = count; | 141 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8swapWithERS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEE8swapWithERS2_ Line | Count | Source | 129 | 11.5k | { | 130 | 11.5k | T* buffer = m_buffer; | 131 | 11.5k | m_buffer = other.m_buffer; | 132 | 11.5k | other.m_buffer = buffer; | 133 | | | 134 | 11.5k | auto bufferSize = m_capacity; | 135 | 11.5k | m_capacity = other.m_capacity; | 136 | 11.5k | other.m_capacity = bufferSize; | 137 | | | 138 | 11.5k | auto count = m_count; | 139 | 11.5k | m_count = other.m_count; | 140 | 11.5k | other.m_count = count; | 141 | 11.5k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE8swapWithERS3_ _ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE8swapWithERS4_ Line | Count | Source | 129 | 125 | { | 130 | 125 | T* buffer = m_buffer; | 131 | 125 | m_buffer = other.m_buffer; | 132 | 125 | other.m_buffer = buffer; | 133 | | | 134 | 125 | auto bufferSize = m_capacity; | 135 | 125 | m_capacity = other.m_capacity; | 136 | 125 | other.m_capacity = bufferSize; | 137 | | | 138 | 125 | auto count = m_count; | 139 | 125 | m_count = other.m_count; | 140 | 125 | other.m_count = count; | 141 | 125 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8swapWithERS4_ Line | Count | Source | 129 | 126k | { | 130 | 126k | T* buffer = m_buffer; | 131 | 126k | m_buffer = other.m_buffer; | 132 | 126k | other.m_buffer = buffer; | 133 | | | 134 | 126k | auto bufferSize = m_capacity; | 135 | 126k | m_capacity = other.m_capacity; | 136 | 126k | other.m_capacity = bufferSize; | 137 | | | 138 | 126k | auto count = m_count; | 139 | 126k | m_count = other.m_count; | 140 | 126k | other.m_count = count; | 141 | 126k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8swapWithERS4_ Unexecuted instantiation: _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8swapWithERS3_ Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8swapWithERS4_ Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE8swapWithERS2_ Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8swapWithERS4_ |
142 | | |
143 | | T* detachBuffer() |
144 | 664 | { |
145 | 664 | T* rs = m_buffer; |
146 | 664 | m_buffer = nullptr; |
147 | 664 | m_count = 0; |
148 | 664 | m_capacity = 0; |
149 | 664 | return rs; |
150 | 664 | } |
151 | | void attachBuffer(T* buffer, Index count, Index capacity) |
152 | 664 | { |
153 | | // Can only attach a buffer if there isn't a buffer already associated |
154 | 664 | SLANG_ASSERT(m_buffer == nullptr); |
155 | 664 | SLANG_ASSERT(count <= capacity); |
156 | 664 | m_buffer = buffer; |
157 | 664 | m_count = count; |
158 | 664 | m_capacity = capacity; |
159 | 664 | } |
160 | | |
161 | 1.00M | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); }_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 234 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 34.3k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 940k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 26.2k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 102 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 163 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 8 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 6 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 151 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_9NameValueENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 36 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPKvNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 2 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 390 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 3 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIhNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 330 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 248 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
|
162 | | |
163 | | inline ArrayView<T> getArrayView(Index start, Index count) const |
164 | 278 | { |
165 | 278 | SLANG_ASSERT(start >= 0 && count >= 0 && start + count <= m_count); |
166 | 278 | return ArrayView<T>(m_buffer + start, count); |
167 | 278 | } _ZNK5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE12getArrayViewEll Line | Count | Source | 164 | 278 | { | 165 | 278 | SLANG_ASSERT(start >= 0 && count >= 0 && start + count <= m_count); | 166 | 278 | return ArrayView<T>(m_buffer + start, count); | 167 | 278 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12getArrayViewEll Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE12getArrayViewEll |
168 | | |
169 | | void _maybeReserveForAdd() |
170 | 183M | { |
171 | 183M | if (m_capacity <= m_count) |
172 | 15.9M | { |
173 | 15.9M | Index newBufferSize = kInitialCount; |
174 | 15.9M | if (m_capacity) |
175 | 493k | newBufferSize = (m_capacity << 1); |
176 | | |
177 | 15.9M | reserve(newBufferSize); |
178 | 15.9M | } |
179 | 183M | } _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.17k | { | 171 | 5.17k | if (m_capacity <= m_count) | 172 | 1.11k | { | 173 | 1.11k | Index newBufferSize = kInitialCount; | 174 | 1.11k | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.11k | reserve(newBufferSize); | 178 | 1.11k | } | 179 | 5.17k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 106k | { | 171 | 106k | if (m_capacity <= m_count) | 172 | 15.9k | { | 173 | 15.9k | Index newBufferSize = kInitialCount; | 174 | 15.9k | if (m_capacity) | 175 | 888 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 15.9k | reserve(newBufferSize); | 178 | 15.9k | } | 179 | 106k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 242k | { | 171 | 242k | if (m_capacity <= m_count) | 172 | 5.57k | { | 173 | 5.57k | Index newBufferSize = kInitialCount; | 174 | 5.57k | if (m_capacity) | 175 | 2.48k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 5.57k | reserve(newBufferSize); | 178 | 5.57k | } | 179 | 242k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6.50k | { | 171 | 6.50k | if (m_capacity <= m_count) | 172 | 2.97k | { | 173 | 2.97k | Index newBufferSize = kInitialCount; | 174 | 2.97k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.97k | reserve(newBufferSize); | 178 | 2.97k | } | 179 | 6.50k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 450 | { | 171 | 450 | if (m_capacity <= m_count) | 172 | 247 | { | 173 | 247 | Index newBufferSize = kInitialCount; | 174 | 247 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 247 | reserve(newBufferSize); | 178 | 247 | } | 179 | 450 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 223 | { | 171 | 223 | if (m_capacity <= m_count) | 172 | 163 | { | 173 | 163 | Index newBufferSize = kInitialCount; | 174 | 163 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 163 | reserve(newBufferSize); | 178 | 163 | } | 179 | 223 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.92M | { | 171 | 1.92M | if (m_capacity <= m_count) | 172 | 801k | { | 173 | 801k | Index newBufferSize = kInitialCount; | 174 | 801k | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 801k | reserve(newBufferSize); | 178 | 801k | } | 179 | 1.92M | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 78.9M | { | 171 | 78.9M | if (m_capacity <= m_count) | 172 | 6.51M | { | 173 | 6.51M | Index newBufferSize = kInitialCount; | 174 | 6.51M | if (m_capacity) | 175 | 256k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6.51M | reserve(newBufferSize); | 178 | 6.51M | } | 179 | 78.9M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.19M | { | 171 | 1.19M | if (m_capacity <= m_count) | 172 | 2.07k | { | 173 | 2.07k | Index newBufferSize = kInitialCount; | 174 | 2.07k | if (m_capacity) | 175 | 1.63k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.07k | reserve(newBufferSize); | 178 | 2.07k | } | 179 | 1.19M | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.55k | { | 171 | 2.55k | if (m_capacity <= m_count) | 172 | 2.47k | { | 173 | 2.47k | Index newBufferSize = kInitialCount; | 174 | 2.47k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.47k | reserve(newBufferSize); | 178 | 2.47k | } | 179 | 2.55k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.90k | { | 171 | 1.90k | if (m_capacity <= m_count) | 172 | 1.84k | { | 173 | 1.84k | Index newBufferSize = kInitialCount; | 174 | 1.84k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.84k | reserve(newBufferSize); | 178 | 1.84k | } | 179 | 1.90k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.15k | { | 171 | 2.15k | if (m_capacity <= m_count) | 172 | 1.10k | { | 173 | 1.10k | Index newBufferSize = kInitialCount; | 174 | 1.10k | if (m_capacity) | 175 | 18 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.10k | reserve(newBufferSize); | 178 | 1.10k | } | 179 | 2.15k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.94M | { | 171 | 2.94M | if (m_capacity <= m_count) | 172 | 1.07M | { | 173 | 1.07M | Index newBufferSize = kInitialCount; | 174 | 1.07M | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.07M | reserve(newBufferSize); | 178 | 1.07M | } | 179 | 2.94M | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10.3k | { | 171 | 10.3k | if (m_capacity <= m_count) | 172 | 10.0k | { | 173 | 10.0k | Index newBufferSize = kInitialCount; | 174 | 10.0k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10.0k | reserve(newBufferSize); | 178 | 10.0k | } | 179 | 10.3k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 501k | { | 171 | 501k | if (m_capacity <= m_count) | 172 | 98.6k | { | 173 | 98.6k | Index newBufferSize = kInitialCount; | 174 | 98.6k | if (m_capacity) | 175 | 2.88k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 98.6k | reserve(newBufferSize); | 178 | 98.6k | } | 179 | 501k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 30 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 92 | { | 171 | 92 | if (m_capacity <= m_count) | 172 | 30 | { | 173 | 30 | Index newBufferSize = kInitialCount; | 174 | 30 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 30 | reserve(newBufferSize); | 178 | 30 | } | 179 | 92 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.99k | { | 171 | 3.99k | if (m_capacity <= m_count) | 172 | 1.02k | { | 173 | 1.02k | Index newBufferSize = kInitialCount; | 174 | 1.02k | if (m_capacity) | 175 | 14 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.02k | reserve(newBufferSize); | 178 | 1.02k | } | 179 | 3.99k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 282k | { | 171 | 282k | if (m_capacity <= m_count) | 172 | 244k | { | 173 | 244k | Index newBufferSize = kInitialCount; | 174 | 244k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 244k | reserve(newBufferSize); | 178 | 244k | } | 179 | 282k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 50.7k | { | 171 | 50.7k | if (m_capacity <= m_count) | 172 | 28.0k | { | 173 | 28.0k | Index newBufferSize = kInitialCount; | 174 | 28.0k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 28.0k | reserve(newBufferSize); | 178 | 28.0k | } | 179 | 50.7k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 251 | { | 171 | 251 | if (m_capacity <= m_count) | 172 | 206 | { | 173 | 206 | Index newBufferSize = kInitialCount; | 174 | 206 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 206 | reserve(newBufferSize); | 178 | 206 | } | 179 | 251 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 765 | { | 171 | 765 | if (m_capacity <= m_count) | 172 | 445 | { | 173 | 445 | Index newBufferSize = kInitialCount; | 174 | 445 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 445 | reserve(newBufferSize); | 178 | 445 | } | 179 | 765 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 751 | { | 171 | 751 | if (m_capacity <= m_count) | 172 | 751 | { | 173 | 751 | Index newBufferSize = kInitialCount; | 174 | 751 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 751 | reserve(newBufferSize); | 178 | 751 | } | 179 | 751 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 12 | { | 173 | 12 | Index newBufferSize = kInitialCount; | 174 | 12 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 12 | reserve(newBufferSize); | 178 | 12 | } | 179 | 24 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 557k | { | 171 | 557k | if (m_capacity <= m_count) | 172 | 37.7k | { | 173 | 37.7k | Index newBufferSize = kInitialCount; | 174 | 37.7k | if (m_capacity) | 175 | 3.36k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 37.7k | reserve(newBufferSize); | 178 | 37.7k | } | 179 | 557k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12.9k | { | 171 | 12.9k | if (m_capacity <= m_count) | 172 | 120 | { | 173 | 120 | Index newBufferSize = kInitialCount; | 174 | 120 | if (m_capacity) | 175 | 120 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 120 | reserve(newBufferSize); | 178 | 120 | } | 179 | 12.9k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.44M | { | 171 | 1.44M | if (m_capacity <= m_count) | 172 | 706k | { | 173 | 706k | Index newBufferSize = kInitialCount; | 174 | 706k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 706k | reserve(newBufferSize); | 178 | 706k | } | 179 | 1.44M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 208k | { | 171 | 208k | if (m_capacity <= m_count) | 172 | 28.1k | { | 173 | 28.1k | Index newBufferSize = kInitialCount; | 174 | 28.1k | if (m_capacity) | 175 | 2.91k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 28.1k | reserve(newBufferSize); | 178 | 28.1k | } | 179 | 208k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.77M | { | 171 | 1.77M | if (m_capacity <= m_count) | 172 | 102k | { | 173 | 102k | Index newBufferSize = kInitialCount; | 174 | 102k | if (m_capacity) | 175 | 45.5k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 102k | reserve(newBufferSize); | 178 | 102k | } | 179 | 1.77M | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 568 | { | 171 | 568 | if (m_capacity <= m_count) | 172 | 565 | { | 173 | 565 | Index newBufferSize = kInitialCount; | 174 | 565 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 565 | reserve(newBufferSize); | 178 | 565 | } | 179 | 568 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.07k | { | 171 | 1.07k | if (m_capacity <= m_count) | 172 | 475 | { | 173 | 475 | Index newBufferSize = kInitialCount; | 174 | 475 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 475 | reserve(newBufferSize); | 178 | 475 | } | 179 | 1.07k | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4.85k | { | 171 | 4.85k | if (m_capacity <= m_count) | 172 | 542 | { | 173 | 542 | Index newBufferSize = kInitialCount; | 174 | 542 | if (m_capacity) | 175 | 61 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 542 | reserve(newBufferSize); | 178 | 542 | } | 179 | 4.85k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.78k | { | 171 | 5.78k | if (m_capacity <= m_count) | 172 | 1.61k | { | 173 | 1.61k | Index newBufferSize = kInitialCount; | 174 | 1.61k | if (m_capacity) | 175 | 108 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.61k | reserve(newBufferSize); | 178 | 1.61k | } | 179 | 5.78k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 560k | { | 171 | 560k | if (m_capacity <= m_count) | 172 | 296k | { | 173 | 296k | Index newBufferSize = kInitialCount; | 174 | 296k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 296k | reserve(newBufferSize); | 178 | 296k | } | 179 | 560k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 252 | { | 171 | 252 | if (m_capacity <= m_count) | 172 | 228 | { | 173 | 228 | Index newBufferSize = kInitialCount; | 174 | 228 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 228 | reserve(newBufferSize); | 178 | 228 | } | 179 | 252 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 16 | { | 171 | 16 | if (m_capacity <= m_count) | 172 | 16 | { | 173 | 16 | Index newBufferSize = kInitialCount; | 174 | 16 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 16 | reserve(newBufferSize); | 178 | 16 | } | 179 | 16 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 4 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 34 | { | 171 | 34 | if (m_capacity <= m_count) | 172 | 32 | { | 173 | 32 | Index newBufferSize = kInitialCount; | 174 | 32 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 32 | reserve(newBufferSize); | 178 | 32 | } | 179 | 34 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8.75k | { | 171 | 8.75k | if (m_capacity <= m_count) | 172 | 4.46k | { | 173 | 4.46k | Index newBufferSize = kInitialCount; | 174 | 4.46k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4.46k | reserve(newBufferSize); | 178 | 4.46k | } | 179 | 8.75k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 26 | { | 171 | 26 | if (m_capacity <= m_count) | 172 | 16 | { | 173 | 16 | Index newBufferSize = kInitialCount; | 174 | 16 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 16 | reserve(newBufferSize); | 178 | 16 | } | 179 | 26 | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9.41M | { | 171 | 9.41M | if (m_capacity <= m_count) | 172 | 28.7k | { | 173 | 28.7k | Index newBufferSize = kInitialCount; | 174 | 28.7k | if (m_capacity) | 175 | 910 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 28.7k | reserve(newBufferSize); | 178 | 28.7k | } | 179 | 9.41M | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 76 | { | 171 | 76 | if (m_capacity <= m_count) | 172 | 34 | { | 173 | 34 | Index newBufferSize = kInitialCount; | 174 | 34 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 34 | reserve(newBufferSize); | 178 | 34 | } | 179 | 76 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 261k | { | 171 | 261k | if (m_capacity <= m_count) | 172 | 69.4k | { | 173 | 69.4k | Index newBufferSize = kInitialCount; | 174 | 69.4k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 69.4k | reserve(newBufferSize); | 178 | 69.4k | } | 179 | 261k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 14.2k | { | 171 | 14.2k | if (m_capacity <= m_count) | 172 | 1.49k | { | 173 | 1.49k | Index newBufferSize = kInitialCount; | 174 | 1.49k | if (m_capacity) | 175 | 316 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.49k | reserve(newBufferSize); | 178 | 1.49k | } | 179 | 14.2k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.28M | { | 171 | 1.28M | if (m_capacity <= m_count) | 172 | 827k | { | 173 | 827k | Index newBufferSize = kInitialCount; | 174 | 827k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 827k | reserve(newBufferSize); | 178 | 827k | } | 179 | 1.28M | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.18k | { | 171 | 2.18k | if (m_capacity <= m_count) | 172 | 900 | { | 173 | 900 | Index newBufferSize = kInitialCount; | 174 | 900 | if (m_capacity) | 175 | 43 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 900 | reserve(newBufferSize); | 178 | 900 | } | 179 | 2.18k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 168 | { | 171 | 168 | if (m_capacity <= m_count) | 172 | 168 | { | 173 | 168 | Index newBufferSize = kInitialCount; | 174 | 168 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 168 | reserve(newBufferSize); | 178 | 168 | } | 179 | 168 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 418 | { | 171 | 418 | if (m_capacity <= m_count) | 172 | 410 | { | 173 | 410 | Index newBufferSize = kInitialCount; | 174 | 410 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 410 | reserve(newBufferSize); | 178 | 410 | } | 179 | 418 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.03k | { | 171 | 1.03k | if (m_capacity <= m_count) | 172 | 924 | { | 173 | 924 | Index newBufferSize = kInitialCount; | 174 | 924 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 924 | reserve(newBufferSize); | 178 | 924 | } | 179 | 1.03k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.09k | { | 171 | 1.09k | if (m_capacity <= m_count) | 172 | 678 | { | 173 | 678 | Index newBufferSize = kInitialCount; | 174 | 678 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 678 | reserve(newBufferSize); | 178 | 678 | } | 179 | 1.09k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 4 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.96k | { | 171 | 1.96k | if (m_capacity <= m_count) | 172 | 1.32k | { | 173 | 1.32k | Index newBufferSize = kInitialCount; | 174 | 1.32k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.32k | reserve(newBufferSize); | 178 | 1.32k | } | 179 | 1.96k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 14.9k | { | 171 | 14.9k | if (m_capacity <= m_count) | 172 | 1.85k | { | 173 | 1.85k | Index newBufferSize = kInitialCount; | 174 | 1.85k | if (m_capacity) | 175 | 153 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.85k | reserve(newBufferSize); | 178 | 1.85k | } | 179 | 14.9k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 429 | { | 171 | 429 | if (m_capacity <= m_count) | 172 | 427 | { | 173 | 427 | Index newBufferSize = kInitialCount; | 174 | 427 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 427 | reserve(newBufferSize); | 178 | 427 | } | 179 | 429 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 120 | { | 171 | 120 | if (m_capacity <= m_count) | 172 | 118 | { | 173 | 118 | Index newBufferSize = kInitialCount; | 174 | 118 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 118 | reserve(newBufferSize); | 178 | 118 | } | 179 | 120 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 120 | { | 171 | 120 | if (m_capacity <= m_count) | 172 | 118 | { | 173 | 118 | Index newBufferSize = kInitialCount; | 174 | 118 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 118 | reserve(newBufferSize); | 178 | 118 | } | 179 | 120 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.76k | { | 171 | 2.76k | if (m_capacity <= m_count) | 172 | 458 | { | 173 | 458 | Index newBufferSize = kInitialCount; | 174 | 458 | if (m_capacity) | 175 | 40 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 458 | reserve(newBufferSize); | 178 | 458 | } | 179 | 2.76k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 53.0k | { | 171 | 53.0k | if (m_capacity <= m_count) | 172 | 53 | { | 173 | 53 | Index newBufferSize = kInitialCount; | 174 | 53 | if (m_capacity) | 175 | 25 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 53 | reserve(newBufferSize); | 178 | 53 | } | 179 | 53.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIlNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 29.3M | { | 171 | 29.3M | if (m_capacity <= m_count) | 172 | 7.09k | { | 173 | 7.09k | Index newBufferSize = kInitialCount; | 174 | 7.09k | if (m_capacity) | 175 | 3.90k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7.09k | reserve(newBufferSize); | 178 | 7.09k | } | 179 | 29.3M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 13 | { | 171 | 13 | if (m_capacity <= m_count) | 172 | 11 | { | 173 | 11 | Index newBufferSize = kInitialCount; | 174 | 11 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 11 | reserve(newBufferSize); | 178 | 11 | } | 179 | 13 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 26.9k | { | 171 | 26.9k | if (m_capacity <= m_count) | 172 | 524 | { | 173 | 524 | Index newBufferSize = kInitialCount; | 174 | 524 | if (m_capacity) | 175 | 399 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 524 | reserve(newBufferSize); | 178 | 524 | } | 179 | 26.9k | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 171 | { | 171 | 171 | if (m_capacity <= m_count) | 172 | 71 | { | 173 | 71 | Index newBufferSize = kInitialCount; | 174 | 71 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71 | reserve(newBufferSize); | 178 | 71 | } | 179 | 171 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 293k | { | 171 | 293k | if (m_capacity <= m_count) | 172 | 24.6k | { | 173 | 24.6k | Index newBufferSize = kInitialCount; | 174 | 24.6k | if (m_capacity) | 175 | 558 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 24.6k | reserve(newBufferSize); | 178 | 24.6k | } | 179 | 293k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 71.0k | { | 171 | 71.0k | if (m_capacity <= m_count) | 172 | 39.1k | { | 173 | 39.1k | Index newBufferSize = kInitialCount; | 174 | 39.1k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 39.1k | reserve(newBufferSize); | 178 | 39.1k | } | 179 | 71.0k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 678 | { | 171 | 678 | if (m_capacity <= m_count) | 172 | 247 | { | 173 | 247 | Index newBufferSize = kInitialCount; | 174 | 247 | if (m_capacity) | 175 | 4 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 247 | reserve(newBufferSize); | 178 | 247 | } | 179 | 678 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4.10k | { | 171 | 4.10k | if (m_capacity <= m_count) | 172 | 3.23k | { | 173 | 3.23k | Index newBufferSize = kInitialCount; | 174 | 3.23k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.23k | reserve(newBufferSize); | 178 | 3.23k | } | 179 | 4.10k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 179k | { | 171 | 179k | if (m_capacity <= m_count) | 172 | 6.99k | { | 173 | 6.99k | Index newBufferSize = kInitialCount; | 174 | 6.99k | if (m_capacity) | 175 | 1.83k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6.99k | reserve(newBufferSize); | 178 | 6.99k | } | 179 | 179k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 23.3M | { | 171 | 23.3M | if (m_capacity <= m_count) | 172 | 1.15k | { | 173 | 1.15k | Index newBufferSize = kInitialCount; | 174 | 1.15k | if (m_capacity) | 175 | 1.09k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.15k | reserve(newBufferSize); | 178 | 1.15k | } | 179 | 23.3M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 17 | { | 171 | 17 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 17 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 57 | { | 171 | 57 | if (m_capacity <= m_count) | 172 | 33 | { | 173 | 33 | Index newBufferSize = kInitialCount; | 174 | 33 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 33 | reserve(newBufferSize); | 178 | 33 | } | 179 | 57 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 6 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 145 | { | 171 | 145 | if (m_capacity <= m_count) | 172 | 145 | { | 173 | 145 | Index newBufferSize = kInitialCount; | 174 | 145 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 145 | reserve(newBufferSize); | 178 | 145 | } | 179 | 145 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 251 | { | 171 | 251 | if (m_capacity <= m_count) | 172 | 246 | { | 173 | 246 | Index newBufferSize = kInitialCount; | 174 | 246 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 246 | reserve(newBufferSize); | 178 | 246 | } | 179 | 251 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 76 | { | 171 | 76 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 2 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 76 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 70 | { | 171 | 70 | if (m_capacity <= m_count) | 172 | 30 | { | 173 | 30 | Index newBufferSize = kInitialCount; | 174 | 30 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 30 | reserve(newBufferSize); | 178 | 30 | } | 179 | 70 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.12M | { | 171 | 5.12M | if (m_capacity <= m_count) | 172 | 494k | { | 173 | 494k | Index newBufferSize = kInitialCount; | 174 | 494k | if (m_capacity) | 175 | 43.7k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 494k | reserve(newBufferSize); | 178 | 494k | } | 179 | 5.12M | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 238k | { | 171 | 238k | if (m_capacity <= m_count) | 172 | 237k | { | 173 | 237k | Index newBufferSize = kInitialCount; | 174 | 237k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 237k | reserve(newBufferSize); | 178 | 237k | } | 179 | 238k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 94 | { | 171 | 94 | if (m_capacity <= m_count) | 172 | 41 | { | 173 | 41 | Index newBufferSize = kInitialCount; | 174 | 41 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 41 | reserve(newBufferSize); | 178 | 41 | } | 179 | 94 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 6 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 72 | { | 171 | 72 | if (m_capacity <= m_count) | 172 | 72 | { | 173 | 72 | Index newBufferSize = kInitialCount; | 174 | 72 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 72 | reserve(newBufferSize); | 178 | 72 | } | 179 | 72 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 64 | { | 171 | 64 | if (m_capacity <= m_count) | 172 | 64 | { | 173 | 64 | Index newBufferSize = kInitialCount; | 174 | 64 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 64 | reserve(newBufferSize); | 178 | 64 | } | 179 | 64 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E19_maybeReserveForAddEv Line | Count | Source | 170 | 137 | { | 171 | 137 | if (m_capacity <= m_count) | 172 | 27 | { | 173 | 27 | Index newBufferSize = kInitialCount; | 174 | 27 | if (m_capacity) | 175 | 2 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 27 | reserve(newBufferSize); | 178 | 27 | } | 179 | 137 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 35.4k | { | 171 | 35.4k | if (m_capacity <= m_count) | 172 | 4.93k | { | 173 | 4.93k | Index newBufferSize = kInitialCount; | 174 | 4.93k | if (m_capacity) | 175 | 152 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4.93k | reserve(newBufferSize); | 178 | 4.93k | } | 179 | 35.4k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 470 | { | 171 | 470 | if (m_capacity <= m_count) | 172 | 26 | { | 173 | 26 | Index newBufferSize = kInitialCount; | 174 | 26 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 26 | reserve(newBufferSize); | 178 | 26 | } | 179 | 470 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 77 | { | 171 | 77 | if (m_capacity <= m_count) | 172 | 77 | { | 173 | 77 | Index newBufferSize = kInitialCount; | 174 | 77 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 77 | reserve(newBufferSize); | 178 | 77 | } | 179 | 77 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.24k | { | 171 | 1.24k | if (m_capacity <= m_count) | 172 | 1.10k | { | 173 | 1.10k | Index newBufferSize = kInitialCount; | 174 | 1.10k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.10k | reserve(newBufferSize); | 178 | 1.10k | } | 179 | 1.24k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 332 | { | 171 | 332 | if (m_capacity <= m_count) | 172 | 60 | { | 173 | 60 | Index newBufferSize = kInitialCount; | 174 | 60 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 60 | reserve(newBufferSize); | 178 | 60 | } | 179 | 332 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 13 | { | 171 | 13 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 13 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6.24k | { | 171 | 6.24k | if (m_capacity <= m_count) | 172 | 598 | { | 173 | 598 | Index newBufferSize = kInitialCount; | 174 | 598 | if (m_capacity) | 175 | 283 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 598 | reserve(newBufferSize); | 178 | 598 | } | 179 | 6.24k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 193k | { | 171 | 193k | if (m_capacity <= m_count) | 172 | 700 | { | 173 | 700 | Index newBufferSize = kInitialCount; | 174 | 700 | if (m_capacity) | 175 | 504 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 700 | reserve(newBufferSize); | 178 | 700 | } | 179 | 193k | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 82.4k | { | 171 | 82.4k | if (m_capacity <= m_count) | 172 | 21.7k | { | 173 | 21.7k | Index newBufferSize = kInitialCount; | 174 | 21.7k | if (m_capacity) | 175 | 541 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 21.7k | reserve(newBufferSize); | 178 | 21.7k | } | 179 | 82.4k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 97 | { | 171 | 97 | if (m_capacity <= m_count) | 172 | 61 | { | 173 | 61 | Index newBufferSize = kInitialCount; | 174 | 61 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 61 | reserve(newBufferSize); | 178 | 61 | } | 179 | 97 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListImNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.28M | { | 171 | 7.28M | if (m_capacity <= m_count) | 172 | 3.42M | { | 173 | 3.42M | Index newBufferSize = kInitialCount; | 174 | 3.42M | if (m_capacity) | 175 | 316 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.42M | reserve(newBufferSize); | 178 | 3.42M | } | 179 | 7.28M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.06M | { | 171 | 1.06M | if (m_capacity <= m_count) | 172 | 57.6k | { | 173 | 57.6k | Index newBufferSize = kInitialCount; | 174 | 57.6k | if (m_capacity) | 175 | 14.9k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 57.6k | reserve(newBufferSize); | 178 | 57.6k | } | 179 | 1.06M | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 929 | { | 171 | 929 | if (m_capacity <= m_count) | 172 | 829 | { | 173 | 829 | Index newBufferSize = kInitialCount; | 174 | 829 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 829 | reserve(newBufferSize); | 178 | 829 | } | 179 | 929 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 34 | { | 171 | 34 | if (m_capacity <= m_count) | 172 | 34 | { | 173 | 34 | Index newBufferSize = kInitialCount; | 174 | 34 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 34 | reserve(newBufferSize); | 178 | 34 | } | 179 | 34 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8.15k | { | 171 | 8.15k | if (m_capacity <= m_count) | 172 | 57 | { | 173 | 57 | Index newBufferSize = kInitialCount; | 174 | 57 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 57 | reserve(newBufferSize); | 178 | 57 | } | 179 | 8.15k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 52 | { | 171 | 52 | if (m_capacity <= m_count) | 172 | 52 | { | 173 | 52 | Index newBufferSize = kInitialCount; | 174 | 52 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 52 | reserve(newBufferSize); | 178 | 52 | } | 179 | 52 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 4 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 106 | { | 171 | 106 | if (m_capacity <= m_count) | 172 | 100 | { | 173 | 100 | Index newBufferSize = kInitialCount; | 174 | 100 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 100 | reserve(newBufferSize); | 178 | 100 | } | 179 | 106 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 205k | { | 171 | 205k | if (m_capacity <= m_count) | 172 | 27.7k | { | 173 | 27.7k | Index newBufferSize = kInitialCount; | 174 | 27.7k | if (m_capacity) | 175 | 2.58k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 27.7k | reserve(newBufferSize); | 178 | 27.7k | } | 179 | 205k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7 | { | 171 | 7 | if (m_capacity <= m_count) | 172 | 7 | { | 173 | 7 | Index newBufferSize = kInitialCount; | 174 | 7 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7 | reserve(newBufferSize); | 178 | 7 | } | 179 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7 | { | 171 | 7 | if (m_capacity <= m_count) | 172 | 7 | { | 173 | 7 | Index newBufferSize = kInitialCount; | 174 | 7 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7 | reserve(newBufferSize); | 178 | 7 | } | 179 | 7 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 13 | { | 171 | 13 | if (m_capacity <= m_count) | 172 | 11 | { | 173 | 11 | Index newBufferSize = kInitialCount; | 174 | 11 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 11 | reserve(newBufferSize); | 178 | 11 | } | 179 | 13 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20 | { | 171 | 20 | if (m_capacity <= m_count) | 172 | 17 | { | 173 | 17 | Index newBufferSize = kInitialCount; | 174 | 17 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 17 | reserve(newBufferSize); | 178 | 17 | } | 179 | 20 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12 | { | 171 | 12 | if (m_capacity <= m_count) | 172 | 12 | { | 173 | 12 | Index newBufferSize = kInitialCount; | 174 | 12 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 12 | reserve(newBufferSize); | 178 | 12 | } | 179 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.93k | { | 171 | 1.93k | if (m_capacity <= m_count) | 172 | 285 | { | 173 | 285 | Index newBufferSize = kInitialCount; | 174 | 285 | if (m_capacity) | 175 | 44 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 285 | reserve(newBufferSize); | 178 | 285 | } | 179 | 1.93k | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.50k | { | 171 | 1.50k | if (m_capacity <= m_count) | 172 | 1.17k | { | 173 | 1.17k | Index newBufferSize = kInitialCount; | 174 | 1.17k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.17k | reserve(newBufferSize); | 178 | 1.17k | } | 179 | 1.50k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 116 | { | 171 | 116 | if (m_capacity <= m_count) | 172 | 53 | { | 173 | 53 | Index newBufferSize = kInitialCount; | 174 | 53 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 53 | reserve(newBufferSize); | 178 | 53 | } | 179 | 116 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.25k | { | 171 | 3.25k | if (m_capacity <= m_count) | 172 | 1.33k | { | 173 | 1.33k | Index newBufferSize = kInitialCount; | 174 | 1.33k | if (m_capacity) | 175 | 4 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.33k | reserve(newBufferSize); | 178 | 1.33k | } | 179 | 3.25k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 386 | { | 171 | 386 | if (m_capacity <= m_count) | 172 | 189 | { | 173 | 189 | Index newBufferSize = kInitialCount; | 174 | 189 | if (m_capacity) | 175 | 4 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 189 | reserve(newBufferSize); | 178 | 189 | } | 179 | 386 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 984 | { | 171 | 984 | if (m_capacity <= m_count) | 172 | 417 | { | 173 | 417 | Index newBufferSize = kInitialCount; | 174 | 417 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 417 | reserve(newBufferSize); | 178 | 417 | } | 179 | 984 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.05k | { | 171 | 1.05k | if (m_capacity <= m_count) | 172 | 243 | { | 173 | 243 | Index newBufferSize = kInitialCount; | 174 | 243 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 243 | reserve(newBufferSize); | 178 | 243 | } | 179 | 1.05k | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 12 | { | 173 | 12 | Index newBufferSize = kInitialCount; | 174 | 12 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 12 | reserve(newBufferSize); | 178 | 12 | } | 179 | 24 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 14.5k | { | 171 | 14.5k | if (m_capacity <= m_count) | 172 | 735 | { | 173 | 735 | Index newBufferSize = kInitialCount; | 174 | 735 | if (m_capacity) | 175 | 430 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 735 | reserve(newBufferSize); | 178 | 735 | } | 179 | 14.5k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 129 | { | 171 | 129 | if (m_capacity <= m_count) | 172 | 80 | { | 173 | 80 | Index newBufferSize = kInitialCount; | 174 | 80 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 80 | reserve(newBufferSize); | 178 | 80 | } | 179 | 129 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 18 | { | 171 | 18 | if (m_capacity <= m_count) | 172 | 18 | { | 173 | 18 | Index newBufferSize = kInitialCount; | 174 | 18 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 18 | reserve(newBufferSize); | 178 | 18 | } | 179 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5 | { | 171 | 5 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 5 | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 4 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 125k | { | 171 | 125k | if (m_capacity <= m_count) | 172 | 124k | { | 173 | 124k | Index newBufferSize = kInitialCount; | 174 | 124k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 124k | reserve(newBufferSize); | 178 | 124k | } | 179 | 125k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 249k | { | 171 | 249k | if (m_capacity <= m_count) | 172 | 124k | { | 173 | 124k | Index newBufferSize = kInitialCount; | 174 | 124k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 124k | reserve(newBufferSize); | 178 | 124k | } | 179 | 249k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20.1k | { | 171 | 20.1k | if (m_capacity <= m_count) | 172 | 10.9k | { | 173 | 10.9k | Index newBufferSize = kInitialCount; | 174 | 10.9k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10.9k | reserve(newBufferSize); | 178 | 10.9k | } | 179 | 20.1k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.61k | { | 171 | 3.61k | if (m_capacity <= m_count) | 172 | 3.61k | { | 173 | 3.61k | Index newBufferSize = kInitialCount; | 174 | 3.61k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.61k | reserve(newBufferSize); | 178 | 3.61k | } | 179 | 3.61k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 317 | { | 171 | 317 | if (m_capacity <= m_count) | 172 | 105 | { | 173 | 105 | Index newBufferSize = kInitialCount; | 174 | 105 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 105 | reserve(newBufferSize); | 178 | 105 | } | 179 | 317 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.86k | { | 171 | 1.86k | if (m_capacity <= m_count) | 172 | 1.86k | { | 173 | 1.86k | Index newBufferSize = kInitialCount; | 174 | 1.86k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.86k | reserve(newBufferSize); | 178 | 1.86k | } | 179 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 17 | { | 171 | 17 | if (m_capacity <= m_count) | 172 | 15 | { | 173 | 15 | Index newBufferSize = kInitialCount; | 174 | 15 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 15 | reserve(newBufferSize); | 178 | 15 | } | 179 | 17 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 140 | { | 171 | 140 | if (m_capacity <= m_count) | 172 | 132 | { | 173 | 132 | Index newBufferSize = kInitialCount; | 174 | 132 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 132 | reserve(newBufferSize); | 178 | 132 | } | 179 | 140 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 26.8k | { | 171 | 26.8k | if (m_capacity <= m_count) | 172 | 738 | { | 173 | 738 | Index newBufferSize = kInitialCount; | 174 | 738 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 738 | reserve(newBufferSize); | 178 | 738 | } | 179 | 26.8k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 841 | { | 171 | 841 | if (m_capacity <= m_count) | 172 | 815 | { | 173 | 815 | Index newBufferSize = kInitialCount; | 174 | 815 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 815 | reserve(newBufferSize); | 178 | 815 | } | 179 | 841 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 216 | { | 171 | 216 | if (m_capacity <= m_count) | 172 | 174 | { | 173 | 174 | Index newBufferSize = kInitialCount; | 174 | 174 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 174 | reserve(newBufferSize); | 178 | 174 | } | 179 | 216 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 18.3k | { | 171 | 18.3k | if (m_capacity <= m_count) | 172 | 2.36k | { | 173 | 2.36k | Index newBufferSize = kInitialCount; | 174 | 2.36k | if (m_capacity) | 175 | 88 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.36k | reserve(newBufferSize); | 178 | 2.36k | } | 179 | 18.3k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 211k | { | 171 | 211k | if (m_capacity <= m_count) | 172 | 197k | { | 173 | 197k | Index newBufferSize = kInitialCount; | 174 | 197k | if (m_capacity) | 175 | 4 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 197k | reserve(newBufferSize); | 178 | 197k | } | 179 | 211k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 529 | { | 171 | 529 | if (m_capacity <= m_count) | 172 | 54 | { | 173 | 54 | Index newBufferSize = kInitialCount; | 174 | 54 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 54 | reserve(newBufferSize); | 178 | 54 | } | 179 | 529 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 48 | { | 171 | 48 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10.4k | { | 171 | 10.4k | if (m_capacity <= m_count) | 172 | 71 | { | 173 | 71 | Index newBufferSize = kInitialCount; | 174 | 71 | if (m_capacity) | 175 | 52 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71 | reserve(newBufferSize); | 178 | 71 | } | 179 | 10.4k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 30 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 8 | { | 173 | 8 | Index newBufferSize = kInitialCount; | 174 | 8 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 8 | reserve(newBufferSize); | 178 | 8 | } | 179 | 24 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 48 | { | 171 | 48 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 151 | { | 171 | 151 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 151 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.40k | { | 171 | 1.40k | if (m_capacity <= m_count) | 172 | 899 | { | 173 | 899 | Index newBufferSize = kInitialCount; | 174 | 899 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 899 | reserve(newBufferSize); | 178 | 899 | } | 179 | 1.40k | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.40k | { | 171 | 1.40k | if (m_capacity <= m_count) | 172 | 899 | { | 173 | 899 | Index newBufferSize = kInitialCount; | 174 | 899 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 899 | reserve(newBufferSize); | 178 | 899 | } | 179 | 1.40k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.95k | { | 171 | 2.95k | if (m_capacity <= m_count) | 172 | 570 | { | 173 | 570 | Index newBufferSize = kInitialCount; | 174 | 570 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 570 | reserve(newBufferSize); | 178 | 570 | } | 179 | 2.95k | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 383 | { | 171 | 383 | if (m_capacity <= m_count) | 172 | 372 | { | 173 | 372 | Index newBufferSize = kInitialCount; | 174 | 372 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 372 | reserve(newBufferSize); | 178 | 372 | } | 179 | 383 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3 | { | 171 | 3 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 16.2k | { | 171 | 16.2k | if (m_capacity <= m_count) | 172 | 3.06k | { | 173 | 3.06k | Index newBufferSize = kInitialCount; | 174 | 3.06k | if (m_capacity) | 175 | 153 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.06k | reserve(newBufferSize); | 178 | 3.06k | } | 179 | 16.2k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 785 | { | 171 | 785 | if (m_capacity <= m_count) | 172 | 227 | { | 173 | 227 | Index newBufferSize = kInitialCount; | 174 | 227 | if (m_capacity) | 175 | 5 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 227 | reserve(newBufferSize); | 178 | 227 | } | 179 | 785 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 47.9k | { | 171 | 47.9k | if (m_capacity <= m_count) | 172 | 27.2k | { | 173 | 27.2k | Index newBufferSize = kInitialCount; | 174 | 27.2k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 27.2k | reserve(newBufferSize); | 178 | 27.2k | } | 179 | 47.9k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 283 | { | 171 | 283 | if (m_capacity <= m_count) | 172 | 277 | { | 173 | 277 | Index newBufferSize = kInitialCount; | 174 | 277 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 277 | reserve(newBufferSize); | 178 | 277 | } | 179 | 283 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 684 | { | 171 | 684 | if (m_capacity <= m_count) | 172 | 72 | { | 173 | 72 | Index newBufferSize = kInitialCount; | 174 | 72 | if (m_capacity) | 175 | 36 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 72 | reserve(newBufferSize); | 178 | 72 | } | 179 | 684 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 209 | { | 171 | 209 | if (m_capacity <= m_count) | 172 | 208 | { | 173 | 208 | Index newBufferSize = kInitialCount; | 174 | 208 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 208 | reserve(newBufferSize); | 178 | 208 | } | 179 | 209 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 111 | { | 171 | 111 | if (m_capacity <= m_count) | 172 | 110 | { | 173 | 110 | Index newBufferSize = kInitialCount; | 174 | 110 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 110 | reserve(newBufferSize); | 178 | 110 | } | 179 | 111 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 174 | { | 171 | 174 | if (m_capacity <= m_count) | 172 | 172 | { | 173 | 172 | Index newBufferSize = kInitialCount; | 174 | 172 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 172 | reserve(newBufferSize); | 178 | 172 | } | 179 | 174 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 119 | { | 171 | 119 | if (m_capacity <= m_count) | 172 | 117 | { | 173 | 117 | Index newBufferSize = kInitialCount; | 174 | 117 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 117 | reserve(newBufferSize); | 178 | 117 | } | 179 | 119 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.93k | { | 171 | 2.93k | if (m_capacity <= m_count) | 172 | 508 | { | 173 | 508 | Index newBufferSize = kInitialCount; | 174 | 508 | if (m_capacity) | 175 | 19 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 508 | reserve(newBufferSize); | 178 | 508 | } | 179 | 2.93k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 373 | { | 171 | 373 | if (m_capacity <= m_count) | 172 | 362 | { | 173 | 362 | Index newBufferSize = kInitialCount; | 174 | 362 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 362 | reserve(newBufferSize); | 178 | 362 | } | 179 | 373 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.61k | { | 171 | 1.61k | if (m_capacity <= m_count) | 172 | 810 | { | 173 | 810 | Index newBufferSize = kInitialCount; | 174 | 810 | if (m_capacity) | 175 | 18 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 810 | reserve(newBufferSize); | 178 | 810 | } | 179 | 1.61k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.26k | { | 171 | 1.26k | if (m_capacity <= m_count) | 172 | 637 | { | 173 | 637 | Index newBufferSize = kInitialCount; | 174 | 637 | if (m_capacity) | 175 | 18 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 637 | reserve(newBufferSize); | 178 | 637 | } | 179 | 1.26k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 918 | { | 171 | 918 | if (m_capacity <= m_count) | 172 | 330 | { | 173 | 330 | Index newBufferSize = kInitialCount; | 174 | 330 | if (m_capacity) | 175 | 18 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 330 | reserve(newBufferSize); | 178 | 330 | } | 179 | 918 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 30 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9 | { | 171 | 9 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 9 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 208 | { | 171 | 208 | if (m_capacity <= m_count) | 172 | 50 | { | 173 | 50 | Index newBufferSize = kInitialCount; | 174 | 50 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 50 | reserve(newBufferSize); | 178 | 50 | } | 179 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10 | { | 171 | 10 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 10 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.82k | { | 171 | 2.82k | if (m_capacity <= m_count) | 172 | 2.80k | { | 173 | 2.80k | Index newBufferSize = kInitialCount; | 174 | 2.80k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.80k | reserve(newBufferSize); | 178 | 2.80k | } | 179 | 2.82k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 50 | { | 171 | 50 | if (m_capacity <= m_count) | 172 | 50 | { | 173 | 50 | Index newBufferSize = kInitialCount; | 174 | 50 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 50 | reserve(newBufferSize); | 178 | 50 | } | 179 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 78 | { | 171 | 78 | if (m_capacity <= m_count) | 172 | 50 | { | 173 | 50 | Index newBufferSize = kInitialCount; | 174 | 50 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 50 | reserve(newBufferSize); | 178 | 50 | } | 179 | 78 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 84 | { | 171 | 84 | if (m_capacity <= m_count) | 172 | 56 | { | 173 | 56 | Index newBufferSize = kInitialCount; | 174 | 56 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 56 | reserve(newBufferSize); | 178 | 56 | } | 179 | 84 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 67 | { | 171 | 67 | if (m_capacity <= m_count) | 172 | 52 | { | 173 | 52 | Index newBufferSize = kInitialCount; | 174 | 52 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 52 | reserve(newBufferSize); | 178 | 52 | } | 179 | 67 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 13 | { | 171 | 13 | if (m_capacity <= m_count) | 172 | 7 | { | 173 | 7 | Index newBufferSize = kInitialCount; | 174 | 7 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7 | reserve(newBufferSize); | 178 | 7 | } | 179 | 13 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 11 | { | 171 | 11 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 11 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.42M | { | 171 | 3.42M | if (m_capacity <= m_count) | 172 | 146k | { | 173 | 146k | Index newBufferSize = kInitialCount; | 174 | 146k | if (m_capacity) | 175 | 101k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 146k | reserve(newBufferSize); | 178 | 146k | } | 179 | 3.42M | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 75 | { | 171 | 75 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 75 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 93 | { | 171 | 93 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 93 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.14k | { | 171 | 1.14k | if (m_capacity <= m_count) | 172 | 7 | { | 173 | 7 | Index newBufferSize = kInitialCount; | 174 | 7 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7 | reserve(newBufferSize); | 178 | 7 | } | 179 | 1.14k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 470k | { | 171 | 470k | if (m_capacity <= m_count) | 172 | 241 | { | 173 | 241 | Index newBufferSize = kInitialCount; | 174 | 241 | if (m_capacity) | 175 | 180 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 241 | reserve(newBufferSize); | 178 | 241 | } | 179 | 470k | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9.28M | { | 171 | 9.28M | if (m_capacity <= m_count) | 172 | 878 | { | 173 | 878 | Index newBufferSize = kInitialCount; | 174 | 878 | if (m_capacity) | 175 | 813 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 878 | reserve(newBufferSize); | 178 | 878 | } | 179 | 9.28M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 121 | { | 171 | 121 | if (m_capacity <= m_count) | 172 | 70 | { | 173 | 70 | Index newBufferSize = kInitialCount; | 174 | 70 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 70 | reserve(newBufferSize); | 178 | 70 | } | 179 | 121 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 379 | { | 171 | 379 | if (m_capacity <= m_count) | 172 | 377 | { | 173 | 377 | Index newBufferSize = kInitialCount; | 174 | 377 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 377 | reserve(newBufferSize); | 178 | 377 | } | 179 | 379 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 6 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 0 | { | 173 | 0 | Index newBufferSize = kInitialCount; | 174 | 0 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | |
| 177 | 0 | reserve(newBufferSize); | 178 | 0 | } | 179 | 4 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10 | { | 171 | 10 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 10 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 824 | { | 171 | 824 | if (m_capacity <= m_count) | 172 | 412 | { | 173 | 412 | Index newBufferSize = kInitialCount; | 174 | 412 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 412 | reserve(newBufferSize); | 178 | 412 | } | 179 | 824 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E19_maybeReserveForAddEv Line | Count | Source | 170 | 2.68k | { | 171 | 2.68k | if (m_capacity <= m_count) | 172 | 130 | { | 173 | 130 | Index newBufferSize = kInitialCount; | 174 | 130 | if (m_capacity) | 175 | 34 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 130 | reserve(newBufferSize); | 178 | 130 | } | 179 | 2.68k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 838 | { | 171 | 838 | if (m_capacity <= m_count) | 172 | 416 | { | 173 | 416 | Index newBufferSize = kInitialCount; | 174 | 416 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 416 | reserve(newBufferSize); | 178 | 416 | } | 179 | 838 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 26.6k | { | 171 | 26.6k | if (m_capacity <= m_count) | 172 | 252 | { | 173 | 252 | Index newBufferSize = kInitialCount; | 174 | 252 | if (m_capacity) | 175 | 216 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 252 | reserve(newBufferSize); | 178 | 252 | } | 179 | 26.6k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 972 | { | 171 | 972 | if (m_capacity <= m_count) | 172 | 72 | { | 173 | 72 | Index newBufferSize = kInitialCount; | 174 | 72 | if (m_capacity) | 175 | 36 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 72 | reserve(newBufferSize); | 178 | 72 | } | 179 | 972 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.17k | { | 171 | 3.17k | if (m_capacity <= m_count) | 172 | 65 | { | 173 | 65 | Index newBufferSize = kInitialCount; | 174 | 65 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 65 | reserve(newBufferSize); | 178 | 65 | } | 179 | 3.17k | } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3 | { | 171 | 3 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 3 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12.6k | { | 171 | 12.6k | if (m_capacity <= m_count) | 172 | 1.18k | { | 173 | 1.18k | Index newBufferSize = kInitialCount; | 174 | 1.18k | if (m_capacity) | 175 | 564 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.18k | reserve(newBufferSize); | 178 | 1.18k | } | 179 | 12.6k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.73k | { | 171 | 1.73k | if (m_capacity <= m_count) | 172 | 278 | { | 173 | 278 | Index newBufferSize = kInitialCount; | 174 | 278 | if (m_capacity) | 175 | 40 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 278 | reserve(newBufferSize); | 178 | 278 | } | 179 | 1.73k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.69k | { | 171 | 2.69k | if (m_capacity <= m_count) | 172 | 2.26k | { | 173 | 2.26k | Index newBufferSize = kInitialCount; | 174 | 2.26k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.26k | reserve(newBufferSize); | 178 | 2.26k | } | 179 | 2.69k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4.71k | { | 171 | 4.71k | if (m_capacity <= m_count) | 172 | 1.46k | { | 173 | 1.46k | Index newBufferSize = kInitialCount; | 174 | 1.46k | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.46k | reserve(newBufferSize); | 178 | 1.46k | } | 179 | 4.71k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 782 | { | 171 | 782 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 7 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 782 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 21 | { | 171 | 21 | if (m_capacity <= m_count) | 172 | 21 | { | 173 | 21 | Index newBufferSize = kInitialCount; | 174 | 21 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 21 | reserve(newBufferSize); | 178 | 21 | } | 179 | 21 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 76 | { | 171 | 76 | if (m_capacity <= m_count) | 172 | 25 | { | 173 | 25 | Index newBufferSize = kInitialCount; | 174 | 25 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 25 | reserve(newBufferSize); | 178 | 25 | } | 179 | 76 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 166 | { | 171 | 166 | if (m_capacity <= m_count) | 172 | 166 | { | 173 | 166 | Index newBufferSize = kInitialCount; | 174 | 166 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 166 | reserve(newBufferSize); | 178 | 166 | } | 179 | 166 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 105k | { | 171 | 105k | if (m_capacity <= m_count) | 172 | 17.9k | { | 173 | 17.9k | Index newBufferSize = kInitialCount; | 174 | 17.9k | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 17.9k | reserve(newBufferSize); | 178 | 17.9k | } | 179 | 105k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8.10k | { | 171 | 8.10k | if (m_capacity <= m_count) | 172 | 2.86k | { | 173 | 2.86k | Index newBufferSize = kInitialCount; | 174 | 2.86k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.86k | reserve(newBufferSize); | 178 | 2.86k | } | 179 | 8.10k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 44.3k | { | 171 | 44.3k | if (m_capacity <= m_count) | 172 | 294 | { | 173 | 294 | Index newBufferSize = kInitialCount; | 174 | 294 | if (m_capacity) | 175 | 205 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 294 | reserve(newBufferSize); | 178 | 294 | } | 179 | 44.3k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 16.9k | { | 171 | 16.9k | if (m_capacity <= m_count) | 172 | 510 | { | 173 | 510 | Index newBufferSize = kInitialCount; | 174 | 510 | if (m_capacity) | 175 | 71 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 510 | reserve(newBufferSize); | 178 | 510 | } | 179 | 16.9k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 21.2k | { | 171 | 21.2k | if (m_capacity <= m_count) | 172 | 3.03k | { | 173 | 3.03k | Index newBufferSize = kInitialCount; | 174 | 3.03k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.03k | reserve(newBufferSize); | 178 | 3.03k | } | 179 | 21.2k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20.2k | { | 171 | 20.2k | if (m_capacity <= m_count) | 172 | 3.00k | { | 173 | 3.00k | Index newBufferSize = kInitialCount; | 174 | 3.00k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.00k | reserve(newBufferSize); | 178 | 3.00k | } | 179 | 20.2k | } |
|
180 | | |
181 | | void add(T&& obj) |
182 | 14.6M | { |
183 | 14.6M | _maybeReserveForAdd(); |
184 | 14.6M | m_buffer[m_count++] = static_cast<T&&>(obj); |
185 | 14.6M | } _ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE3addEOS6_ Line | Count | Source | 182 | 450 | { | 183 | 450 | _maybeReserveForAdd(); | 184 | 450 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 450 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.19M | { | 183 | 1.19M | _maybeReserveForAdd(); | 184 | 1.19M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.19M | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 6.62M | { | 183 | 6.62M | _maybeReserveForAdd(); | 184 | 6.62M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 6.62M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2.42M | { | 183 | 2.42M | _maybeReserveForAdd(); | 184 | 2.42M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.42M | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 428k | { | 183 | 428k | _maybeReserveForAdd(); | 184 | 428k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 428k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 30 | { | 183 | 30 | _maybeReserveForAdd(); | 184 | 30 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 30 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.17k | { | 183 | 1.17k | _maybeReserveForAdd(); | 184 | 1.17k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.17k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 10.8k | { | 183 | 10.8k | _maybeReserveForAdd(); | 184 | 10.8k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 10.8k | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE3addEOb Line | Count | Source | 182 | 251 | { | 183 | 251 | _maybeReserveForAdd(); | 184 | 251 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 251 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 16 | { | 183 | 16 | _maybeReserveForAdd(); | 184 | 16 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 16 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 388 | { | 183 | 388 | _maybeReserveForAdd(); | 184 | 388 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 388 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 4.85k | { | 183 | 4.85k | _maybeReserveForAdd(); | 184 | 4.85k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 4.85k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 27.5k | { | 183 | 27.5k | _maybeReserveForAdd(); | 184 | 27.5k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 27.5k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 3 | { | 183 | 3 | _maybeReserveForAdd(); | 184 | 3 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 3 | { | 183 | 3 | _maybeReserveForAdd(); | 184 | 3 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 4 | { | 183 | 4 | _maybeReserveForAdd(); | 184 | 4 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 4 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 18 | { | 183 | 18 | _maybeReserveForAdd(); | 184 | 18 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 18 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 24 | { | 183 | 24 | _maybeReserveForAdd(); | 184 | 24 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 24 | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE3addEOS4_ _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 76 | { | 183 | 76 | _maybeReserveForAdd(); | 184 | 76 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 76 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 261k | { | 183 | 261k | _maybeReserveForAdd(); | 184 | 261k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 261k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 1.28M | { | 183 | 1.28M | _maybeReserveForAdd(); | 184 | 1.28M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.28M | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 418 | { | 183 | 418 | _maybeReserveForAdd(); | 184 | 418 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 418 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 896 | { | 183 | 896 | _maybeReserveForAdd(); | 184 | 896 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 896 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 32.5k | { | 183 | 32.5k | _maybeReserveForAdd(); | 184 | 32.5k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 32.5k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 427 | { | 183 | 427 | _maybeReserveForAdd(); | 184 | 427 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 427 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 120 | { | 183 | 120 | _maybeReserveForAdd(); | 184 | 120 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 120 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3addEOS2_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIlNS_17StandardAllocatorEE3addEOl Line | Count | Source | 182 | 3.13k | { | 183 | 3.13k | _maybeReserveForAdd(); | 184 | 3.13k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3.13k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 11 | { | 183 | 11 | _maybeReserveForAdd(); | 184 | 11 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 11 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3addEOj Line | Count | Source | 182 | 95.1k | { | 183 | 95.1k | _maybeReserveForAdd(); | 184 | 95.1k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 95.1k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 22.5k | { | 183 | 22.5k | _maybeReserveForAdd(); | 184 | 22.5k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 22.5k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 67 | { | 183 | 67 | _maybeReserveForAdd(); | 184 | 67 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 67 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3addEOh Line | Count | Source | 182 | 39.2k | { | 183 | 39.2k | _maybeReserveForAdd(); | 184 | 39.2k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 39.2k | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 13 | { | 183 | 13 | _maybeReserveForAdd(); | 184 | 13 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 13 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 145 | { | 183 | 145 | _maybeReserveForAdd(); | 184 | 145 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 145 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 1.90k | { | 183 | 1.90k | _maybeReserveForAdd(); | 184 | 1.90k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.90k | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 38 | { | 183 | 38 | _maybeReserveForAdd(); | 184 | 38 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 38 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 595k | { | 183 | 595k | _maybeReserveForAdd(); | 184 | 595k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 595k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 6 | { | 183 | 6 | _maybeReserveForAdd(); | 184 | 6 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 6 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 470 | { | 183 | 470 | _maybeReserveForAdd(); | 184 | 470 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 470 | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE3addEOS8_ Line | Count | Source | 182 | 2 | { | 183 | 2 | _maybeReserveForAdd(); | 184 | 2 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 53 | { | 183 | 53 | _maybeReserveForAdd(); | 184 | 53 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 53 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 82.4k | { | 183 | 82.4k | _maybeReserveForAdd(); | 184 | 82.4k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 82.4k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 4 | { | 183 | 4 | _maybeReserveForAdd(); | 184 | 4 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 4 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.06M | { | 183 | 1.06M | _maybeReserveForAdd(); | 184 | 1.06M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.06M | } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE3addEOSD_ _ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 259 | { | 183 | 259 | _maybeReserveForAdd(); | 184 | 259 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 259 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE3addEOS5_ Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 7 | { | 183 | 7 | _maybeReserveForAdd(); | 184 | 7 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 12 | { | 183 | 12 | _maybeReserveForAdd(); | 184 | 12 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE3addEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE3addEOS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.20k | { | 183 | 1.20k | _maybeReserveForAdd(); | 184 | 1.20k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.20k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 116 | { | 183 | 116 | _maybeReserveForAdd(); | 184 | 116 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 116 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 386 | { | 183 | 386 | _maybeReserveForAdd(); | 184 | 386 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 386 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.04k | { | 183 | 1.04k | _maybeReserveForAdd(); | 184 | 1.04k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.04k | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 14.5k | { | 183 | 14.5k | _maybeReserveForAdd(); | 184 | 14.5k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 14.5k | } |
_ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 5 | { | 183 | 5 | _maybeReserveForAdd(); | 184 | 5 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 5 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 125k | { | 183 | 125k | _maybeReserveForAdd(); | 184 | 125k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 125k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE3addEOS7_ Line | Count | Source | 182 | 1.86k | { | 183 | 1.86k | _maybeReserveForAdd(); | 184 | 1.86k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
_ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE3addEOS8_ Line | Count | Source | 182 | 26.8k | { | 183 | 26.8k | _maybeReserveForAdd(); | 184 | 26.8k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 26.8k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 841 | { | 183 | 841 | _maybeReserveForAdd(); | 184 | 841 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 841 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 18.3k | { | 183 | 18.3k | _maybeReserveForAdd(); | 184 | 18.3k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 18.3k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 14.2k | { | 183 | 14.2k | _maybeReserveForAdd(); | 184 | 14.2k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 14.2k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 33 | { | 183 | 33 | _maybeReserveForAdd(); | 184 | 33 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 33 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 15 | { | 183 | 15 | _maybeReserveForAdd(); | 184 | 15 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 15 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 48 | { | 183 | 48 | _maybeReserveForAdd(); | 184 | 48 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE3addEOS6_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 151 | { | 183 | 151 | _maybeReserveForAdd(); | 184 | 151 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 151 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2.95k | { | 183 | 2.95k | _maybeReserveForAdd(); | 184 | 2.95k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.95k | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 383 | { | 183 | 383 | _maybeReserveForAdd(); | 184 | 383 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 383 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 1.13k | { | 183 | 1.13k | _maybeReserveForAdd(); | 184 | 1.13k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.13k | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 3 | { | 183 | 3 | _maybeReserveForAdd(); | 184 | 3 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3 | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 785 | { | 183 | 785 | _maybeReserveForAdd(); | 184 | 785 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 785 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 283 | { | 183 | 283 | _maybeReserveForAdd(); | 184 | 283 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 283 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 684 | { | 183 | 684 | _maybeReserveForAdd(); | 184 | 684 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 684 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2.93k | { | 183 | 2.93k | _maybeReserveForAdd(); | 184 | 2.93k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.93k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 918 | { | 183 | 918 | _maybeReserveForAdd(); | 184 | 918 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 918 | } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 2 | { | 183 | 2 | _maybeReserveForAdd(); | 184 | 2 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3addEOS1_ Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 1.85k | { | 183 | 1.85k | _maybeReserveForAdd(); | 184 | 1.85k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.85k | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 13 | { | 183 | 13 | _maybeReserveForAdd(); | 184 | 13 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 13 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE3addEOS5_ Line | Count | Source | 182 | 11 | { | 183 | 11 | _maybeReserveForAdd(); | 184 | 11 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 11 | } |
_ZN5Slang4ListImNS_17StandardAllocatorEE3addEOm Line | Count | Source | 182 | 27 | { | 183 | 27 | _maybeReserveForAdd(); | 184 | 27 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 27 | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 338 | { | 183 | 338 | _maybeReserveForAdd(); | 184 | 338 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 338 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 229k | { | 183 | 229k | _maybeReserveForAdd(); | 184 | 229k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 229k | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 121 | { | 183 | 121 | _maybeReserveForAdd(); | 184 | 121 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 121 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIPKvNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2 | { | 183 | 2 | _maybeReserveForAdd(); | 184 | 2 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E3addEOS2_ Line | Count | Source | 182 | 2.68k | { | 183 | 2.68k | _maybeReserveForAdd(); | 184 | 2.68k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.68k | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 837 | { | 183 | 837 | _maybeReserveForAdd(); | 184 | 837 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 837 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 12.6k | { | 183 | 12.6k | _maybeReserveForAdd(); | 184 | 12.6k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 12.6k | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 2.20k | { | 183 | 2.20k | _maybeReserveForAdd(); | 184 | 2.20k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.20k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 4.71k | { | 183 | 4.71k | _maybeReserveForAdd(); | 184 | 4.71k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 4.71k | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 21 | { | 183 | 21 | _maybeReserveForAdd(); | 184 | 21 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 21 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 76 | { | 183 | 76 | _maybeReserveForAdd(); | 184 | 76 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 76 | } |
Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE3addEOS2_ Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE3addEOS1_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE3addEOS3_ |
186 | | |
187 | | void add(const T& obj) |
188 | 169M | { |
189 | 169M | _maybeReserveForAdd(); |
190 | 169M | m_buffer[m_count++] = obj; |
191 | 169M | } _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 5.17k | { | 189 | 5.17k | _maybeReserveForAdd(); | 190 | 5.17k | m_buffer[m_count++] = obj; | 191 | 5.17k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 74.4k | { | 189 | 74.4k | _maybeReserveForAdd(); | 190 | 74.4k | m_buffer[m_count++] = obj; | 191 | 74.4k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 242k | { | 189 | 242k | _maybeReserveForAdd(); | 190 | 242k | m_buffer[m_count++] = obj; | 191 | 242k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 6.50k | { | 189 | 6.50k | _maybeReserveForAdd(); | 190 | 6.50k | m_buffer[m_count++] = obj; | 191 | 6.50k | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 220 | { | 189 | 220 | _maybeReserveForAdd(); | 190 | 220 | m_buffer[m_count++] = obj; | 191 | 220 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 72.3M | { | 189 | 72.3M | _maybeReserveForAdd(); | 190 | 72.3M | m_buffer[m_count++] = obj; | 191 | 72.3M | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.55k | { | 189 | 2.55k | _maybeReserveForAdd(); | 190 | 2.55k | m_buffer[m_count++] = obj; | 191 | 2.55k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.90k | { | 189 | 1.90k | _maybeReserveForAdd(); | 190 | 1.90k | m_buffer[m_count++] = obj; | 191 | 1.90k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2.15k | { | 189 | 2.15k | _maybeReserveForAdd(); | 190 | 2.15k | m_buffer[m_count++] = obj; | 191 | 2.15k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.92M | { | 189 | 1.92M | _maybeReserveForAdd(); | 190 | 1.92M | m_buffer[m_count++] = obj; | 191 | 1.92M | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 520k | { | 189 | 520k | _maybeReserveForAdd(); | 190 | 520k | m_buffer[m_count++] = obj; | 191 | 520k | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10.3k | { | 189 | 10.3k | _maybeReserveForAdd(); | 190 | 10.3k | m_buffer[m_count++] = obj; | 191 | 10.3k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 73.5k | { | 189 | 73.5k | _maybeReserveForAdd(); | 190 | 73.5k | m_buffer[m_count++] = obj; | 191 | 73.5k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 92 | { | 189 | 92 | _maybeReserveForAdd(); | 190 | 92 | m_buffer[m_count++] = obj; | 191 | 92 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.81k | { | 189 | 2.81k | _maybeReserveForAdd(); | 190 | 2.81k | m_buffer[m_count++] = obj; | 191 | 2.81k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 255k | { | 189 | 255k | _maybeReserveForAdd(); | 190 | 255k | m_buffer[m_count++] = obj; | 191 | 255k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 39.9k | { | 189 | 39.9k | _maybeReserveForAdd(); | 190 | 39.9k | m_buffer[m_count++] = obj; | 191 | 39.9k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 765 | { | 189 | 765 | _maybeReserveForAdd(); | 190 | 765 | m_buffer[m_count++] = obj; | 191 | 765 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 751 | { | 189 | 751 | _maybeReserveForAdd(); | 190 | 751 | m_buffer[m_count++] = obj; | 191 | 751 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 8 | { | 189 | 8 | _maybeReserveForAdd(); | 190 | 8 | m_buffer[m_count++] = obj; | 191 | 8 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 327k | { | 189 | 327k | _maybeReserveForAdd(); | 190 | 327k | m_buffer[m_count++] = obj; | 191 | 327k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 12.5k | { | 189 | 12.5k | _maybeReserveForAdd(); | 190 | 12.5k | m_buffer[m_count++] = obj; | 191 | 12.5k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.44M | { | 189 | 1.44M | _maybeReserveForAdd(); | 190 | 1.44M | m_buffer[m_count++] = obj; | 191 | 1.44M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 208k | { | 189 | 208k | _maybeReserveForAdd(); | 190 | 208k | m_buffer[m_count++] = obj; | 191 | 208k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.77M | { | 189 | 1.77M | _maybeReserveForAdd(); | 190 | 1.77M | m_buffer[m_count++] = obj; | 191 | 1.77M | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 568 | { | 189 | 568 | _maybeReserveForAdd(); | 190 | 568 | m_buffer[m_count++] = obj; | 191 | 568 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.05k | { | 189 | 1.05k | _maybeReserveForAdd(); | 190 | 1.05k | m_buffer[m_count++] = obj; | 191 | 1.05k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 5.78k | { | 189 | 5.78k | _maybeReserveForAdd(); | 190 | 5.78k | m_buffer[m_count++] = obj; | 191 | 5.78k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 560k | { | 189 | 560k | _maybeReserveForAdd(); | 190 | 560k | m_buffer[m_count++] = obj; | 191 | 560k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 252 | { | 189 | 252 | _maybeReserveForAdd(); | 190 | 252 | m_buffer[m_count++] = obj; | 191 | 252 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 16 | { | 189 | 16 | _maybeReserveForAdd(); | 190 | 16 | m_buffer[m_count++] = obj; | 191 | 16 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 34 | { | 189 | 34 | _maybeReserveForAdd(); | 190 | 34 | m_buffer[m_count++] = obj; | 191 | 34 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 8.75k | { | 189 | 8.75k | _maybeReserveForAdd(); | 190 | 8.75k | m_buffer[m_count++] = obj; | 191 | 8.75k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 8 | { | 189 | 8 | _maybeReserveForAdd(); | 190 | 8 | m_buffer[m_count++] = obj; | 191 | 8 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 9.40M | { | 189 | 9.40M | _maybeReserveForAdd(); | 190 | 9.40M | m_buffer[m_count++] = obj; | 191 | 9.40M | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 24 | { | 189 | 24 | _maybeReserveForAdd(); | 190 | 24 | m_buffer[m_count++] = obj; | 191 | 24 | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 122 | { | 189 | 122 | _maybeReserveForAdd(); | 190 | 122 | m_buffer[m_count++] = obj; | 191 | 122 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.04k | { | 189 | 1.04k | _maybeReserveForAdd(); | 190 | 1.04k | m_buffer[m_count++] = obj; | 191 | 1.04k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 168 | { | 189 | 168 | _maybeReserveForAdd(); | 190 | 168 | m_buffer[m_count++] = obj; | 191 | 168 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.03k | { | 189 | 1.03k | _maybeReserveForAdd(); | 190 | 1.03k | m_buffer[m_count++] = obj; | 191 | 1.03k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 202 | { | 189 | 202 | _maybeReserveForAdd(); | 190 | 202 | m_buffer[m_count++] = obj; | 191 | 202 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 55 | { | 189 | 55 | _maybeReserveForAdd(); | 190 | 55 | m_buffer[m_count++] = obj; | 191 | 55 | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 14.9k | { | 189 | 14.9k | _maybeReserveForAdd(); | 190 | 14.9k | m_buffer[m_count++] = obj; | 191 | 14.9k | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 120 | { | 189 | 120 | _maybeReserveForAdd(); | 190 | 120 | m_buffer[m_count++] = obj; | 191 | 120 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.76k | { | 189 | 2.76k | _maybeReserveForAdd(); | 190 | 2.76k | m_buffer[m_count++] = obj; | 191 | 2.76k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 53.0k | { | 189 | 53.0k | _maybeReserveForAdd(); | 190 | 53.0k | m_buffer[m_count++] = obj; | 191 | 53.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 26.9k | { | 189 | 26.9k | _maybeReserveForAdd(); | 190 | 26.9k | m_buffer[m_count++] = obj; | 191 | 26.9k | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 171 | { | 189 | 171 | _maybeReserveForAdd(); | 190 | 171 | m_buffer[m_count++] = obj; | 191 | 171 | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3addERKj Line | Count | Source | 188 | 198k | { | 189 | 198k | _maybeReserveForAdd(); | 190 | 198k | m_buffer[m_count++] = obj; | 191 | 198k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 678 | { | 189 | 678 | _maybeReserveForAdd(); | 190 | 678 | m_buffer[m_count++] = obj; | 191 | 678 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E3addERKS3_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E3addERKS3_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 178k | { | 189 | 178k | _maybeReserveForAdd(); | 190 | 178k | m_buffer[m_count++] = obj; | 191 | 178k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 57 | { | 189 | 57 | _maybeReserveForAdd(); | 190 | 57 | m_buffer[m_count++] = obj; | 191 | 57 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 76 | { | 189 | 76 | _maybeReserveForAdd(); | 190 | 76 | m_buffer[m_count++] = obj; | 191 | 76 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 70 | { | 189 | 70 | _maybeReserveForAdd(); | 190 | 70 | m_buffer[m_count++] = obj; | 191 | 70 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4.53M | { | 189 | 4.53M | _maybeReserveForAdd(); | 190 | 4.53M | m_buffer[m_count++] = obj; | 191 | 4.53M | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 48.4k | { | 189 | 48.4k | _maybeReserveForAdd(); | 190 | 48.4k | m_buffer[m_count++] = obj; | 191 | 48.4k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 238k | { | 189 | 238k | _maybeReserveForAdd(); | 190 | 238k | m_buffer[m_count++] = obj; | 191 | 238k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 94 | { | 189 | 94 | _maybeReserveForAdd(); | 190 | 94 | m_buffer[m_count++] = obj; | 191 | 94 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 72 | { | 189 | 72 | _maybeReserveForAdd(); | 190 | 72 | m_buffer[m_count++] = obj; | 191 | 72 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 64 | { | 189 | 64 | _maybeReserveForAdd(); | 190 | 64 | m_buffer[m_count++] = obj; | 191 | 64 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E3addERKSH_ Line | Count | Source | 188 | 137 | { | 189 | 137 | _maybeReserveForAdd(); | 190 | 137 | m_buffer[m_count++] = obj; | 191 | 137 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 35.4k | { | 189 | 35.4k | _maybeReserveForAdd(); | 190 | 35.4k | m_buffer[m_count++] = obj; | 191 | 35.4k | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 77 | { | 189 | 77 | _maybeReserveForAdd(); | 190 | 77 | m_buffer[m_count++] = obj; | 191 | 77 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.19k | { | 189 | 1.19k | _maybeReserveForAdd(); | 190 | 1.19k | m_buffer[m_count++] = obj; | 191 | 1.19k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 332 | { | 189 | 332 | _maybeReserveForAdd(); | 190 | 332 | m_buffer[m_count++] = obj; | 191 | 332 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE3addERKSC_ Line | Count | Source | 188 | 13 | { | 189 | 13 | _maybeReserveForAdd(); | 190 | 13 | m_buffer[m_count++] = obj; | 191 | 13 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6.24k | { | 189 | 6.24k | _maybeReserveForAdd(); | 190 | 6.24k | m_buffer[m_count++] = obj; | 191 | 6.24k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE3addERKSG_ Line | Count | Source | 188 | 193k | { | 189 | 193k | _maybeReserveForAdd(); | 190 | 193k | m_buffer[m_count++] = obj; | 191 | 193k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 97 | { | 189 | 97 | _maybeReserveForAdd(); | 190 | 97 | m_buffer[m_count++] = obj; | 191 | 97 | } |
_ZN5Slang4ListImNS_17StandardAllocatorEE3addERKm Line | Count | Source | 188 | 7.28M | { | 189 | 7.28M | _maybeReserveForAdd(); | 190 | 7.28M | m_buffer[m_count++] = obj; | 191 | 7.28M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 929 | { | 189 | 929 | _maybeReserveForAdd(); | 190 | 929 | m_buffer[m_count++] = obj; | 191 | 929 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 34 | { | 189 | 34 | _maybeReserveForAdd(); | 190 | 34 | m_buffer[m_count++] = obj; | 191 | 34 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 8.15k | { | 189 | 8.15k | _maybeReserveForAdd(); | 190 | 8.15k | m_buffer[m_count++] = obj; | 191 | 8.15k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 52 | { | 189 | 52 | _maybeReserveForAdd(); | 190 | 52 | m_buffer[m_count++] = obj; | 191 | 52 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 106 | { | 189 | 106 | _maybeReserveForAdd(); | 190 | 106 | m_buffer[m_count++] = obj; | 191 | 106 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 205k | { | 189 | 205k | _maybeReserveForAdd(); | 190 | 205k | m_buffer[m_count++] = obj; | 191 | 205k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 7 | { | 189 | 7 | _maybeReserveForAdd(); | 190 | 7 | m_buffer[m_count++] = obj; | 191 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 13 | { | 189 | 13 | _maybeReserveForAdd(); | 190 | 13 | m_buffer[m_count++] = obj; | 191 | 13 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 20 | { | 189 | 20 | _maybeReserveForAdd(); | 190 | 20 | m_buffer[m_count++] = obj; | 191 | 20 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIlNS_17StandardAllocatorEE3addERKl Line | Count | Source | 188 | 29.3M | { | 189 | 29.3M | _maybeReserveForAdd(); | 190 | 29.3M | m_buffer[m_count++] = obj; | 191 | 29.3M | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1.93k | { | 189 | 1.93k | _maybeReserveForAdd(); | 190 | 1.93k | m_buffer[m_count++] = obj; | 191 | 1.93k | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 303 | { | 189 | 303 | _maybeReserveForAdd(); | 190 | 303 | m_buffer[m_count++] = obj; | 191 | 303 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.25k | { | 189 | 3.25k | _maybeReserveForAdd(); | 190 | 3.25k | m_buffer[m_count++] = obj; | 191 | 3.25k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4.03k | { | 189 | 4.03k | _maybeReserveForAdd(); | 190 | 4.03k | m_buffer[m_count++] = obj; | 191 | 4.03k | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 984 | { | 189 | 984 | _maybeReserveForAdd(); | 190 | 984 | m_buffer[m_count++] = obj; | 191 | 984 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 7 | { | 189 | 7 | _maybeReserveForAdd(); | 190 | 7 | m_buffer[m_count++] = obj; | 191 | 7 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 24 | { | 189 | 24 | _maybeReserveForAdd(); | 190 | 24 | m_buffer[m_count++] = obj; | 191 | 24 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 129 | { | 189 | 129 | _maybeReserveForAdd(); | 190 | 129 | m_buffer[m_count++] = obj; | 191 | 129 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 18 | { | 189 | 18 | _maybeReserveForAdd(); | 190 | 18 | m_buffer[m_count++] = obj; | 191 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 249k | { | 189 | 249k | _maybeReserveForAdd(); | 190 | 249k | m_buffer[m_count++] = obj; | 191 | 249k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 20.1k | { | 189 | 20.1k | _maybeReserveForAdd(); | 190 | 20.1k | m_buffer[m_count++] = obj; | 191 | 20.1k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.61k | { | 189 | 3.61k | _maybeReserveForAdd(); | 190 | 3.61k | m_buffer[m_count++] = obj; | 191 | 3.61k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 317 | { | 189 | 317 | _maybeReserveForAdd(); | 190 | 317 | m_buffer[m_count++] = obj; | 191 | 317 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 17 | { | 189 | 17 | _maybeReserveForAdd(); | 190 | 17 | m_buffer[m_count++] = obj; | 191 | 17 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 140 | { | 189 | 140 | _maybeReserveForAdd(); | 190 | 140 | m_buffer[m_count++] = obj; | 191 | 140 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 216 | { | 189 | 216 | _maybeReserveForAdd(); | 190 | 216 | m_buffer[m_count++] = obj; | 191 | 216 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE3addERKS5_ slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 211k | { | 189 | 211k | _maybeReserveForAdd(); | 190 | 211k | m_buffer[m_count++] = obj; | 191 | 211k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 496 | { | 189 | 496 | _maybeReserveForAdd(); | 190 | 496 | m_buffer[m_count++] = obj; | 191 | 496 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 33 | { | 189 | 33 | _maybeReserveForAdd(); | 190 | 33 | m_buffer[m_count++] = obj; | 191 | 33 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10.4k | { | 189 | 10.4k | _maybeReserveForAdd(); | 190 | 10.4k | m_buffer[m_count++] = obj; | 191 | 10.4k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 30 | { | 189 | 30 | _maybeReserveForAdd(); | 190 | 30 | m_buffer[m_count++] = obj; | 191 | 30 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 24 | { | 189 | 24 | _maybeReserveForAdd(); | 190 | 24 | m_buffer[m_count++] = obj; | 191 | 24 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.40k | { | 189 | 1.40k | _maybeReserveForAdd(); | 190 | 1.40k | m_buffer[m_count++] = obj; | 191 | 1.40k | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.40k | { | 189 | 1.40k | _maybeReserveForAdd(); | 190 | 1.40k | m_buffer[m_count++] = obj; | 191 | 1.40k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 16.2k | { | 189 | 16.2k | _maybeReserveForAdd(); | 190 | 16.2k | m_buffer[m_count++] = obj; | 191 | 16.2k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 47.9k | { | 189 | 47.9k | _maybeReserveForAdd(); | 190 | 47.9k | m_buffer[m_count++] = obj; | 191 | 47.9k | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 213 | { | 189 | 213 | _maybeReserveForAdd(); | 190 | 213 | m_buffer[m_count++] = obj; | 191 | 213 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 209 | { | 189 | 209 | _maybeReserveForAdd(); | 190 | 209 | m_buffer[m_count++] = obj; | 191 | 209 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 111 | { | 189 | 111 | _maybeReserveForAdd(); | 190 | 111 | m_buffer[m_count++] = obj; | 191 | 111 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 174 | { | 189 | 174 | _maybeReserveForAdd(); | 190 | 174 | m_buffer[m_count++] = obj; | 191 | 174 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 119 | { | 189 | 119 | _maybeReserveForAdd(); | 190 | 119 | m_buffer[m_count++] = obj; | 191 | 119 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 373 | { | 189 | 373 | _maybeReserveForAdd(); | 190 | 373 | m_buffer[m_count++] = obj; | 191 | 373 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1.61k | { | 189 | 1.61k | _maybeReserveForAdd(); | 190 | 1.61k | m_buffer[m_count++] = obj; | 191 | 1.61k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.26k | { | 189 | 1.26k | _maybeReserveForAdd(); | 190 | 1.26k | m_buffer[m_count++] = obj; | 191 | 1.26k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 30 | { | 189 | 30 | _maybeReserveForAdd(); | 190 | 30 | m_buffer[m_count++] = obj; | 191 | 30 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 9 | { | 189 | 9 | _maybeReserveForAdd(); | 190 | 9 | m_buffer[m_count++] = obj; | 191 | 9 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 208 | { | 189 | 208 | _maybeReserveForAdd(); | 190 | 208 | m_buffer[m_count++] = obj; | 191 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 10 | { | 189 | 10 | _maybeReserveForAdd(); | 190 | 10 | m_buffer[m_count++] = obj; | 191 | 10 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2.82k | { | 189 | 2.82k | _maybeReserveForAdd(); | 190 | 2.82k | m_buffer[m_count++] = obj; | 191 | 2.82k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE3addERKS5_ Line | Count | Source | 188 | 50 | { | 189 | 50 | _maybeReserveForAdd(); | 190 | 50 | m_buffer[m_count++] = obj; | 191 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 78 | { | 189 | 78 | _maybeReserveForAdd(); | 190 | 78 | m_buffer[m_count++] = obj; | 191 | 78 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 84 | { | 189 | 84 | _maybeReserveForAdd(); | 190 | 84 | m_buffer[m_count++] = obj; | 191 | 84 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 67 | { | 189 | 67 | _maybeReserveForAdd(); | 190 | 67 | m_buffer[m_count++] = obj; | 191 | 67 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.42M | { | 189 | 3.42M | _maybeReserveForAdd(); | 190 | 3.42M | m_buffer[m_count++] = obj; | 191 | 3.42M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 75 | { | 189 | 75 | _maybeReserveForAdd(); | 190 | 75 | m_buffer[m_count++] = obj; | 191 | 75 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 93 | { | 189 | 93 | _maybeReserveForAdd(); | 190 | 93 | m_buffer[m_count++] = obj; | 191 | 93 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1.14k | { | 189 | 1.14k | _maybeReserveForAdd(); | 190 | 1.14k | m_buffer[m_count++] = obj; | 191 | 1.14k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 470k | { | 189 | 470k | _maybeReserveForAdd(); | 190 | 470k | m_buffer[m_count++] = obj; | 191 | 470k | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 9.28M | { | 189 | 9.28M | _maybeReserveForAdd(); | 190 | 9.28M | m_buffer[m_count++] = obj; | 191 | 9.28M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3addERKh Line | Count | Source | 188 | 23.3M | { | 189 | 23.3M | _maybeReserveForAdd(); | 190 | 23.3M | m_buffer[m_count++] = obj; | 191 | 23.3M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 379 | { | 189 | 379 | _maybeReserveForAdd(); | 190 | 379 | m_buffer[m_count++] = obj; | 191 | 379 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10 | { | 189 | 10 | _maybeReserveForAdd(); | 190 | 10 | m_buffer[m_count++] = obj; | 191 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 26.6k | { | 189 | 26.6k | _maybeReserveForAdd(); | 190 | 26.6k | m_buffer[m_count++] = obj; | 191 | 26.6k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 972 | { | 189 | 972 | _maybeReserveForAdd(); | 190 | 972 | m_buffer[m_count++] = obj; | 191 | 972 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.17k | { | 189 | 3.17k | _maybeReserveForAdd(); | 190 | 3.17k | m_buffer[m_count++] = obj; | 191 | 3.17k | } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 3 | { | 189 | 3 | _maybeReserveForAdd(); | 190 | 3 | m_buffer[m_count++] = obj; | 191 | 3 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.73k | { | 189 | 1.73k | _maybeReserveForAdd(); | 190 | 1.73k | m_buffer[m_count++] = obj; | 191 | 1.73k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 489 | { | 189 | 489 | _maybeReserveForAdd(); | 190 | 489 | m_buffer[m_count++] = obj; | 191 | 489 | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 782 | { | 189 | 782 | _maybeReserveForAdd(); | 190 | 782 | m_buffer[m_count++] = obj; | 191 | 782 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 166 | { | 189 | 166 | _maybeReserveForAdd(); | 190 | 166 | m_buffer[m_count++] = obj; | 191 | 166 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 105k | { | 189 | 105k | _maybeReserveForAdd(); | 190 | 105k | m_buffer[m_count++] = obj; | 191 | 105k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 8.10k | { | 189 | 8.10k | _maybeReserveForAdd(); | 190 | 8.10k | m_buffer[m_count++] = obj; | 191 | 8.10k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 44.3k | { | 189 | 44.3k | _maybeReserveForAdd(); | 190 | 44.3k | m_buffer[m_count++] = obj; | 191 | 44.3k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 16.7k | { | 189 | 16.7k | _maybeReserveForAdd(); | 190 | 16.7k | m_buffer[m_count++] = obj; | 191 | 16.7k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 21.2k | { | 189 | 21.2k | _maybeReserveForAdd(); | 190 | 21.2k | m_buffer[m_count++] = obj; | 191 | 21.2k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE3addERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 20.2k | { | 189 | 20.2k | _maybeReserveForAdd(); | 190 | 20.2k | m_buffer[m_count++] = obj; | 191 | 20.2k | } |
|
192 | | |
193 | 230M | Index getCount() const { return m_count; }_ZNK5Slang4ListImNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 81.7M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 123k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIhNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 15.7M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 87.8k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 15 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 549 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 11.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 7.53k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.08M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 36.1M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4.65k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.96k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 71.9M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 90.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 168k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 297 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.70k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 528 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.25k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 166 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 122 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 275k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 61.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.62k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.07M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_5TokenENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.73k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.10k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4NameENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 982 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 198 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 11.5k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6.27k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 28.2k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.10M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.69M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 197 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.48k | Index getCount() const { return m_count; } |
slang-check-decl.cpp:_ZNK5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.76k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 39.2k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 151 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.27M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 828 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 529 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.34k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 390 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 839 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.62k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 67 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 53.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 62.8k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 27 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE8getCountEv slang-emit-cpp.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 371 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 182k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPjNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 145 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.29k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.13k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 418 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 813 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6.05M | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_4EdgeENS_17StandardAllocatorEE8getCountEv slang-ir-autodiff-primal-hoist.cpp:_ZNK5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E8getCountEv Line | Count | Source | 193 | 162 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.45k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 86.4k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 547 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 578k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.47k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 197 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 70 | Index getCount() const { return m_count; } |
slang-ir-call-graph.cpp:_ZNK5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 193k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.86k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 65.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 65 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 11 | Index getCount() const { return m_count; } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZNK5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 10 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_8LegalValENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 29 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.21k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 278 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 25.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.23k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 55.5k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 66 | Index getCount() const { return m_count; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE8getCountEv slang-ir-simplify-cfg.cpp:_ZNK5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 250k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 368 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.73k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 27.5k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21.4k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 91.8k | Index getCount() const { return m_count; } |
slang-ir.cpp:_ZNK5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 408k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 315 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 54 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 109 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 13.2k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 33 | Index getCount() const { return m_count; } |
Unexecuted instantiation: slang-language-server.cpp:_ZNK5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 19 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_7CommandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 171 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 849 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 212 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 28.6k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.27k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 303 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 944 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.71k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPKcNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.28k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 253 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.67k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 40 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 38 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.90k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 83 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4.95k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 134 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.09k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 160 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 226 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 94 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 438 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIcNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 8.97k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 82 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 546k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 399 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6.92k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.93M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 30.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.23k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 50 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E8getCountEv Line | Count | Source | 193 | 780 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 828 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 53.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9NameValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 36 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.91k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 16 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6.21k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4.71k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 782 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 545 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 110k | Index getCount() const { return m_count; } |
slang-doc-extractor.cpp:_ZNK5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E8getCountEv Line | Count | Source | 193 | 28 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 696 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 824 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 438 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPKwNS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_8OSStringENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 150k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 44.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9.29k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZNK5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_11InstructionENS_17StandardAllocatorEE8getCountEv |
194 | 70.7k | Index getCapacity() const { return m_capacity; }_ZNK5Slang4ListIhNS_17StandardAllocatorEE11getCapacityEv Line | Count | Source | 194 | 70.7k | Index getCapacity() const { return m_capacity; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE11getCapacityEv |
195 | | template<typename Predicate> |
196 | | Index countIf(Predicate predicate) const |
197 | | { |
198 | | Index count = 0; |
199 | | for (Index i = 0; i < getCount(); ++i) |
200 | | { |
201 | | if (predicate((*this)[i])) |
202 | | count++; |
203 | | } |
204 | | return count; |
205 | | } |
206 | | |
207 | | |
208 | 62.3k | const T* getBuffer() const { return m_buffer; }_ZNK5Slang4ListIhNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.24k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 1 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 1.21k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 23.3k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 67 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 770 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 11.7k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 61 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 7.01k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 6.92k | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 308 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListImNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 9 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.72k | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 6 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE9getBufferEv |
209 | 9.66M | T* getBuffer() { return m_buffer; }_ZN5Slang4ListImNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 5.75M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1.58M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E9getBufferEv Line | Count | Source | 209 | 228k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 267k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 167 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 3.62k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1.60M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 88 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 28 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 2.81k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 75.2k | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPjNS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 418 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 6 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 39.6k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 3 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 60 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 315 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 640 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 249 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 14.5k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 86 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 463 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 418 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 2.86k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 16 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 489 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 5 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 10 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 69.8k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 12.8k | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE9getBufferEv |
210 | | |
211 | | bool operator==(const ThisType& rhs) const |
212 | 3.32k | { |
213 | 3.32k | if (&rhs == this) |
214 | 0 | { |
215 | 0 | return true; |
216 | 0 | } |
217 | 3.32k | const Index count = getCount(); |
218 | 3.32k | if (count != rhs.getCount()) |
219 | 4 | { |
220 | 4 | return false; |
221 | 4 | } |
222 | 13.5k | for (Index i = 0; i < count; ++i) |
223 | 10.2k | { |
224 | 10.2k | if ((*this)[i] != rhs[i]) |
225 | 0 | { |
226 | 0 | return false; |
227 | 0 | } |
228 | 10.2k | } |
229 | 3.31k | return true; |
230 | 3.31k | } _ZNK5Slang4ListIjNS_17StandardAllocatorEEeqERKS2_ Line | Count | Source | 212 | 3.30k | { | 213 | 3.30k | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 3.30k | const Index count = getCount(); | 218 | 3.30k | if (count != rhs.getCount()) | 219 | 4 | { | 220 | 4 | return false; | 221 | 4 | } | 222 | 13.5k | for (Index i = 0; i < count; ++i) | 223 | 10.2k | { | 224 | 10.2k | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 10.2k | } | 229 | 3.30k | return true; | 230 | 3.30k | } |
Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEeqERKS3_ Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEeqERKS3_ _ZNK5Slang4ListIlNS_17StandardAllocatorEEeqERKS2_ Line | Count | Source | 212 | 3 | { | 213 | 3 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 3 | const Index count = getCount(); | 218 | 3 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 15 | for (Index i = 0; i < count; ++i) | 223 | 12 | { | 224 | 12 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 12 | } | 229 | 3 | return true; | 230 | 3 | } |
_ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEeqERKS4_ Line | Count | Source | 212 | 9 | { | 213 | 9 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 9 | const Index count = getCount(); | 218 | 9 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 33 | for (Index i = 0; i < count; ++i) | 223 | 24 | { | 224 | 24 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 24 | } | 229 | 9 | return true; | 230 | 9 | } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEeqERKS4_ Line | Count | Source | 212 | 3 | { | 213 | 3 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 3 | const Index count = getCount(); | 218 | 3 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 12 | for (Index i = 0; i < count; ++i) | 223 | 9 | { | 224 | 9 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 9 | } | 229 | 3 | return true; | 230 | 3 | } |
|
231 | 3 | SLANG_FORCE_INLINE bool operator!=(const ThisType& rhs) const { return !(*this == rhs); } |
232 | | |
233 | 500 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); }Unexecuted instantiation: _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE6insertElRKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE6insertElRKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE6insertElRKS1_ _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE6insertElRKS2_ Line | Count | Source | 233 | 491 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE6insertElRKS2_ Line | Count | Source | 233 | 9 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE6insertElRKS2_ |
234 | | |
235 | | void insertRange(Index idx, const T* vals, Index n) |
236 | 20.6M | { |
237 | 20.6M | if (m_capacity < m_count + n) |
238 | 19.8M | { |
239 | 19.8M | Index newBufferCount = kInitialCount; |
240 | 20.0M | while (newBufferCount < m_count + n) |
241 | 155k | newBufferCount = newBufferCount << 1; |
242 | | |
243 | 19.8M | T* newBuffer = _allocate(newBufferCount); |
244 | 19.8M | if (m_capacity) |
245 | 24.8k | { |
246 | | /*if (std::has_trivial_copy_assign<T>::value && |
247 | | std::has_trivial_destructor<T>::value) |
248 | | { |
249 | | memcpy(newBuffer, buffer, sizeof(T) * id); |
250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); |
251 | | } |
252 | | else*/ |
253 | 24.8k | { |
254 | 2.97M | for (Index i = 0; i < idx; i++) |
255 | 2.94M | newBuffer[i] = m_buffer[i]; |
256 | 24.8k | for (Index i = idx; i < m_count; i++) |
257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); |
258 | 24.8k | } |
259 | 24.8k | _deallocateBuffer(); |
260 | 24.8k | } |
261 | 19.8M | m_buffer = newBuffer; |
262 | 19.8M | m_capacity = newBufferCount; |
263 | 19.8M | } |
264 | 766k | else |
265 | 766k | { |
266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) |
267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); |
268 | | else*/ |
269 | 766k | { |
270 | 766k | for (Index i = m_count; i > idx; i--) |
271 | 46 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); |
272 | 766k | } |
273 | 766k | } |
274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) |
275 | | memcpy(buffer + id, vals, sizeof(T) * n); |
276 | | else*/ |
277 | 94.3M | for (Index i = 0; i < n; i++) |
278 | 73.6M | m_buffer[idx + i] = vals[i]; |
279 | | |
280 | 20.6M | m_count += n; |
281 | 20.6M | } _ZN5Slang4ListImNS_17StandardAllocatorEE11insertRangeElPKml Line | Count | Source | 236 | 19.0M | { | 237 | 19.0M | if (m_capacity < m_count + n) | 238 | 19.0M | { | 239 | 19.0M | Index newBufferCount = kInitialCount; | 240 | 19.0M | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 19.0M | T* newBuffer = _allocate(newBufferCount); | 244 | 19.0M | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 19.0M | m_buffer = newBuffer; | 262 | 19.0M | m_capacity = newBufferCount; | 263 | 19.0M | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 56.9M | for (Index i = 0; i < n; i++) | 278 | 37.8M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19.0M | m_count += n; | 281 | 19.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE11insertRangeElPKhl Line | Count | Source | 236 | 296k | { | 237 | 296k | if (m_capacity < m_count + n) | 238 | 30.0k | { | 239 | 30.0k | Index newBufferCount = kInitialCount; | 240 | 95.0k | while (newBufferCount < m_count + n) | 241 | 65.0k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 30.0k | T* newBuffer = _allocate(newBufferCount); | 244 | 30.0k | if (m_capacity) | 245 | 23.6k | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 23.6k | { | 254 | 1.60M | for (Index i = 0; i < idx; i++) | 255 | 1.58M | newBuffer[i] = m_buffer[i]; | 256 | 23.6k | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 23.6k | } | 259 | 23.6k | _deallocateBuffer(); | 260 | 23.6k | } | 261 | 30.0k | m_buffer = newBuffer; | 262 | 30.0k | m_capacity = newBufferCount; | 263 | 30.0k | } | 264 | 265k | else | 265 | 265k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 265k | { | 270 | 265k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 265k | } | 273 | 265k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 5.39M | for (Index i = 0; i < n; i++) | 278 | 5.10M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 296k | m_count += n; | 281 | 296k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 86 | { | 237 | 86 | if (m_capacity < m_count + n) | 238 | 86 | { | 239 | 86 | Index newBufferCount = kInitialCount; | 240 | 857 | while (newBufferCount < m_count + n) | 241 | 771 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 86 | T* newBuffer = _allocate(newBufferCount); | 244 | 86 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 86 | m_buffer = newBuffer; | 262 | 86 | m_capacity = newBufferCount; | 263 | 86 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.14M | for (Index i = 0; i < n; i++) | 278 | 1.14M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 86 | m_count += n; | 281 | 86 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 42.2k | { | 237 | 42.2k | if (m_capacity < m_count + n) | 238 | 7.84k | { | 239 | 7.84k | Index newBufferCount = kInitialCount; | 240 | 8.06k | while (newBufferCount < m_count + n) | 241 | 221 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.84k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.84k | if (m_capacity) | 245 | 7 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 7 | { | 254 | 3.76k | for (Index i = 0; i < idx; i++) | 255 | 3.75k | newBuffer[i] = m_buffer[i]; | 256 | 7 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 7 | } | 259 | 7 | _deallocateBuffer(); | 260 | 7 | } | 261 | 7.84k | m_buffer = newBuffer; | 262 | 7.84k | m_capacity = newBufferCount; | 263 | 7.84k | } | 264 | 34.3k | else | 265 | 34.3k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 34.3k | { | 270 | 34.3k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 34.3k | } | 273 | 34.3k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 89.7k | for (Index i = 0; i < n; i++) | 278 | 47.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 42.2k | m_count += n; | 281 | 42.2k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 25.7k | { | 237 | 25.7k | if (m_capacity < m_count + n) | 238 | 25.7k | { | 239 | 25.7k | Index newBufferCount = kInitialCount; | 240 | 25.7k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 25.7k | T* newBuffer = _allocate(newBufferCount); | 244 | 25.7k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 25.7k | m_buffer = newBuffer; | 262 | 25.7k | m_capacity = newBufferCount; | 263 | 25.7k | } | 264 | 14 | else | 265 | 14 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 14 | { | 270 | 14 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 14 | } | 273 | 14 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 102k | for (Index i = 0; i < n; i++) | 278 | 76.7k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 25.7k | m_count += n; | 281 | 25.7k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 3.04k | { | 237 | 3.04k | if (m_capacity < m_count + n) | 238 | 1.14k | { | 239 | 1.14k | Index newBufferCount = kInitialCount; | 240 | 1.14k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1.14k | T* newBuffer = _allocate(newBufferCount); | 244 | 1.14k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1.14k | m_buffer = newBuffer; | 262 | 1.14k | m_capacity = newBufferCount; | 263 | 1.14k | } | 264 | 1.89k | else | 265 | 1.89k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1.89k | { | 270 | 1.89k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1.89k | } | 273 | 1.89k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 4.19k | for (Index i = 0; i < n; i++) | 278 | 1.14k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3.04k | m_count += n; | 281 | 3.04k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 9.03k | { | 237 | 9.03k | if (m_capacity < m_count + n) | 238 | 6.91k | { | 239 | 6.91k | Index newBufferCount = kInitialCount; | 240 | 6.91k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 6.91k | T* newBuffer = _allocate(newBufferCount); | 244 | 6.91k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 6.91k | m_buffer = newBuffer; | 262 | 6.91k | m_capacity = newBufferCount; | 263 | 6.91k | } | 264 | 2.11k | else | 265 | 2.11k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 2.11k | { | 270 | 2.11k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 2.11k | } | 273 | 2.11k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 20.7k | for (Index i = 0; i < n; i++) | 278 | 11.6k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 9.03k | m_count += n; | 281 | 9.03k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 7.95k | { | 237 | 7.95k | if (m_capacity < m_count + n) | 238 | 7.81k | { | 239 | 7.81k | Index newBufferCount = kInitialCount; | 240 | 7.81k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.81k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.81k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7.81k | m_buffer = newBuffer; | 262 | 7.81k | m_capacity = newBufferCount; | 263 | 7.81k | } | 264 | 142 | else | 265 | 142 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 142 | { | 270 | 142 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 142 | } | 273 | 142 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 23.5k | for (Index i = 0; i < n; i++) | 278 | 15.6k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 7.95k | m_count += n; | 281 | 7.95k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 406k | { | 237 | 406k | if (m_capacity < m_count + n) | 238 | 400k | { | 239 | 400k | Index newBufferCount = kInitialCount; | 240 | 400k | while (newBufferCount < m_count + n) | 241 | 53 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 400k | T* newBuffer = _allocate(newBufferCount); | 244 | 400k | if (m_capacity) | 245 | 3 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 3 | { | 254 | 67 | for (Index i = 0; i < idx; i++) | 255 | 64 | newBuffer[i] = m_buffer[i]; | 256 | 3 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 3 | } | 259 | 3 | _deallocateBuffer(); | 260 | 3 | } | 261 | 400k | m_buffer = newBuffer; | 262 | 400k | m_capacity = newBufferCount; | 263 | 400k | } | 264 | 6.03k | else | 265 | 6.03k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 6.03k | { | 270 | 6.06k | for (Index i = m_count; i > idx; i--) | 271 | 30 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 6.03k | } | 273 | 6.03k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 894k | for (Index i = 0; i < n; i++) | 278 | 487k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 406k | m_count += n; | 281 | 406k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE11insertRangeElPKll Line | Count | Source | 236 | 290 | { | 237 | 290 | if (m_capacity < m_count + n) | 238 | 268 | { | 239 | 268 | Index newBufferCount = kInitialCount; | 240 | 268 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 268 | T* newBuffer = _allocate(newBufferCount); | 244 | 268 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 268 | m_buffer = newBuffer; | 262 | 268 | m_capacity = newBufferCount; | 263 | 268 | } | 264 | 22 | else | 265 | 22 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 22 | { | 270 | 22 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 22 | } | 273 | 22 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 608 | for (Index i = 0; i < n; i++) | 278 | 318 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 290 | m_count += n; | 281 | 290 | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 9 | { | 237 | 9 | if (m_capacity < m_count + n) | 238 | 7 | { | 239 | 7 | Index newBufferCount = kInitialCount; | 240 | 7 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7 | T* newBuffer = _allocate(newBufferCount); | 244 | 7 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7 | m_buffer = newBuffer; | 262 | 7 | m_capacity = newBufferCount; | 263 | 7 | } | 264 | 2 | else | 265 | 2 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 2 | { | 270 | 2 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 2 | } | 273 | 2 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 22 | for (Index i = 0; i < n; i++) | 278 | 13 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 9 | m_count += n; | 281 | 9 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 16.0k | { | 237 | 16.0k | if (m_capacity < m_count + n) | 238 | 14.0k | { | 239 | 14.0k | Index newBufferCount = kInitialCount; | 240 | 28.6k | while (newBufferCount < m_count + n) | 241 | 14.6k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 14.0k | T* newBuffer = _allocate(newBufferCount); | 244 | 14.0k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 14.0k | m_buffer = newBuffer; | 262 | 14.0k | m_capacity = newBufferCount; | 263 | 14.0k | } | 264 | 2.01k | else | 265 | 2.01k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 2.01k | { | 270 | 2.01k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 2.01k | } | 273 | 2.01k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 638k | for (Index i = 0; i < n; i++) | 278 | 622k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 16.0k | m_count += n; | 281 | 16.0k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 25 | { | 237 | 25 | if (m_capacity < m_count + n) | 238 | 24 | { | 239 | 24 | Index newBufferCount = kInitialCount; | 240 | 24 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 24 | T* newBuffer = _allocate(newBufferCount); | 244 | 24 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 24 | m_buffer = newBuffer; | 262 | 24 | m_capacity = newBufferCount; | 263 | 24 | } | 264 | 1 | else | 265 | 1 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1 | { | 270 | 1 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1 | } | 273 | 1 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 65 | for (Index i = 0; i < n; i++) | 278 | 40 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 25 | m_count += n; | 281 | 25 | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 90.1k | { | 237 | 90.1k | if (m_capacity < m_count + n) | 238 | 90.0k | { | 239 | 90.0k | Index newBufferCount = kInitialCount; | 240 | 90.0k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 90.0k | T* newBuffer = _allocate(newBufferCount); | 244 | 90.0k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 90.0k | m_buffer = newBuffer; | 262 | 90.0k | m_capacity = newBufferCount; | 263 | 90.0k | } | 264 | 110 | else | 265 | 110 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 110 | { | 270 | 110 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 110 | } | 273 | 110 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 282k | for (Index i = 0; i < n; i++) | 278 | 192k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 90.1k | m_count += n; | 281 | 90.1k | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 491 | { | 237 | 491 | if (m_capacity < m_count + n) | 238 | 475 | { | 239 | 475 | Index newBufferCount = kInitialCount; | 240 | 475 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 475 | T* newBuffer = _allocate(newBufferCount); | 244 | 475 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 475 | m_buffer = newBuffer; | 262 | 475 | m_capacity = newBufferCount; | 263 | 475 | } | 264 | 16 | else | 265 | 16 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 16 | { | 270 | 32 | for (Index i = m_count; i > idx; i--) | 271 | 16 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 16 | } | 273 | 16 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 982 | for (Index i = 0; i < n; i++) | 278 | 491 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 491 | m_count += n; | 281 | 491 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 363k | { | 237 | 363k | if (m_capacity < m_count + n) | 238 | 63.5k | { | 239 | 63.5k | Index newBufferCount = kInitialCount; | 240 | 92.5k | while (newBufferCount < m_count + n) | 241 | 28.9k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 63.5k | T* newBuffer = _allocate(newBufferCount); | 244 | 63.5k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 63.5k | m_buffer = newBuffer; | 262 | 63.5k | m_capacity = newBufferCount; | 263 | 63.5k | } | 264 | 299k | else | 265 | 299k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 299k | { | 270 | 299k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 299k | } | 273 | 299k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.03M | for (Index i = 0; i < n; i++) | 278 | 675k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 363k | m_count += n; | 281 | 363k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 3.98k | { | 237 | 3.98k | if (m_capacity < m_count + n) | 238 | 3.97k | { | 239 | 3.97k | Index newBufferCount = kInitialCount; | 240 | 3.97k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 3.97k | T* newBuffer = _allocate(newBufferCount); | 244 | 3.97k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 3.97k | m_buffer = newBuffer; | 262 | 3.97k | m_capacity = newBufferCount; | 263 | 3.97k | } | 264 | 7 | else | 265 | 7 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 7 | { | 270 | 7 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 7 | } | 273 | 7 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 11.7k | for (Index i = 0; i < n; i++) | 278 | 7.78k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3.98k | m_count += n; | 281 | 3.98k | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 104 | { | 237 | 104 | if (m_capacity < m_count + n) | 238 | 12 | { | 239 | 12 | Index newBufferCount = kInitialCount; | 240 | 12 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 12 | T* newBuffer = _allocate(newBufferCount); | 244 | 12 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 12 | m_buffer = newBuffer; | 262 | 12 | m_capacity = newBufferCount; | 263 | 12 | } | 264 | 92 | else | 265 | 92 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 92 | { | 270 | 92 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 92 | } | 273 | 92 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 145 | for (Index i = 0; i < n; i++) | 278 | 41 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 104 | m_count += n; | 281 | 104 | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 8 | { | 237 | 8 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 8 | else | 265 | 8 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 8 | { | 270 | 8 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 8 | } | 273 | 8 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 8 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 8 | m_count += n; | 281 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE11insertRangeElPKS1_l _ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 67 | { | 237 | 67 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 67 | else | 265 | 67 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 67 | { | 270 | 67 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 67 | } | 273 | 67 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 67 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 67 | m_count += n; | 281 | 67 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE11insertRangeElPKS1_l Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIjNS_17StandardAllocatorEE11insertRangeElPKjl Line | Count | Source | 236 | 82.7k | { | 237 | 82.7k | if (m_capacity < m_count + n) | 238 | 13.3k | { | 239 | 13.3k | Index newBufferCount = kInitialCount; | 240 | 16.0k | while (newBufferCount < m_count + n) | 241 | 2.71k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 13.3k | T* newBuffer = _allocate(newBufferCount); | 244 | 13.3k | if (m_capacity) | 245 | 581 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 581 | { | 254 | 183k | for (Index i = 0; i < idx; i++) | 255 | 183k | newBuffer[i] = m_buffer[i]; | 256 | 581 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 581 | } | 259 | 581 | _deallocateBuffer(); | 260 | 581 | } | 261 | 13.3k | m_buffer = newBuffer; | 262 | 13.3k | m_capacity = newBufferCount; | 263 | 13.3k | } | 264 | 69.3k | else | 265 | 69.3k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 69.3k | { | 270 | 69.3k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 69.3k | } | 273 | 69.3k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 4.01M | for (Index i = 0; i < n; i++) | 278 | 3.93M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 82.7k | m_count += n; | 281 | 82.7k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 1 | { | 237 | 1 | if (m_capacity < m_count + n) | 238 | 1 | { | 239 | 1 | Index newBufferCount = kInitialCount; | 240 | 1 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1 | T* newBuffer = _allocate(newBufferCount); | 244 | 1 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1 | m_buffer = newBuffer; | 262 | 1 | m_capacity = newBufferCount; | 263 | 1 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3 | for (Index i = 0; i < n; i++) | 278 | 2 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1 | m_count += n; | 281 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 1 | { | 237 | 1 | if (m_capacity < m_count + n) | 238 | 1 | { | 239 | 1 | Index newBufferCount = kInitialCount; | 240 | 1 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1 | T* newBuffer = _allocate(newBufferCount); | 244 | 1 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1 | m_buffer = newBuffer; | 262 | 1 | m_capacity = newBufferCount; | 263 | 1 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3 | for (Index i = 0; i < n; i++) | 278 | 2 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1 | m_count += n; | 281 | 1 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 848 | { | 237 | 848 | if (m_capacity < m_count + n) | 238 | 802 | { | 239 | 802 | Index newBufferCount = kInitialCount; | 240 | 802 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 802 | T* newBuffer = _allocate(newBufferCount); | 244 | 802 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 802 | m_buffer = newBuffer; | 262 | 802 | m_capacity = newBufferCount; | 263 | 802 | } | 264 | 46 | else | 265 | 46 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 46 | { | 270 | 46 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 46 | } | 273 | 46 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.66k | for (Index i = 0; i < n; i++) | 278 | 814 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 848 | m_count += n; | 281 | 848 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 642 | { | 237 | 642 | if (m_capacity < m_count + n) | 238 | 307 | { | 239 | 307 | Index newBufferCount = kInitialCount; | 240 | 590 | while (newBufferCount < m_count + n) | 241 | 283 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 307 | T* newBuffer = _allocate(newBufferCount); | 244 | 307 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 307 | m_buffer = newBuffer; | 262 | 307 | m_capacity = newBufferCount; | 263 | 307 | } | 264 | 335 | else | 265 | 335 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 335 | { | 270 | 335 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 335 | } | 273 | 335 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 6.88k | for (Index i = 0; i < n; i++) | 278 | 6.24k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 642 | m_count += n; | 281 | 642 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 400 | { | 237 | 400 | if (m_capacity < m_count + n) | 238 | 400 | { | 239 | 400 | Index newBufferCount = kInitialCount; | 240 | 400 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 400 | T* newBuffer = _allocate(newBufferCount); | 244 | 400 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 400 | m_buffer = newBuffer; | 262 | 400 | m_capacity = newBufferCount; | 263 | 400 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.21k | for (Index i = 0; i < n; i++) | 278 | 810 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 400 | m_count += n; | 281 | 400 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 122 | { | 237 | 122 | if (m_capacity < m_count + n) | 238 | 122 | { | 239 | 122 | Index newBufferCount = kInitialCount; | 240 | 122 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 122 | T* newBuffer = _allocate(newBufferCount); | 244 | 122 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 122 | m_buffer = newBuffer; | 262 | 122 | m_capacity = newBufferCount; | 263 | 122 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 244 | for (Index i = 0; i < n; i++) | 278 | 122 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 122 | m_count += n; | 281 | 122 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 26 | { | 237 | 26 | if (m_capacity < m_count + n) | 238 | 26 | { | 239 | 26 | Index newBufferCount = kInitialCount; | 240 | 26 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 26 | T* newBuffer = _allocate(newBufferCount); | 244 | 26 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 26 | m_buffer = newBuffer; | 262 | 26 | m_capacity = newBufferCount; | 263 | 26 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 52 | for (Index i = 0; i < n; i++) | 278 | 26 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 26 | m_count += n; | 281 | 26 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 963 | { | 237 | 963 | if (m_capacity < m_count + n) | 238 | 255 | { | 239 | 255 | Index newBufferCount = kInitialCount; | 240 | 255 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 255 | T* newBuffer = _allocate(newBufferCount); | 244 | 255 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 255 | m_buffer = newBuffer; | 262 | 255 | m_capacity = newBufferCount; | 263 | 255 | } | 264 | 708 | else | 265 | 708 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 708 | { | 270 | 708 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 708 | } | 273 | 708 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.21k | for (Index i = 0; i < n; i++) | 278 | 255 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 963 | m_count += n; | 281 | 963 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 1.78k | { | 237 | 1.78k | if (m_capacity < m_count + n) | 238 | 1.70k | { | 239 | 1.70k | Index newBufferCount = kInitialCount; | 240 | 1.70k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1.70k | T* newBuffer = _allocate(newBufferCount); | 244 | 1.70k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1.70k | m_buffer = newBuffer; | 262 | 1.70k | m_capacity = newBufferCount; | 263 | 1.70k | } | 264 | 84 | else | 265 | 84 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 84 | { | 270 | 84 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 84 | } | 273 | 84 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3.72k | for (Index i = 0; i < n; i++) | 278 | 1.93k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1.78k | m_count += n; | 281 | 1.78k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 68.6k | { | 237 | 68.6k | if (m_capacity < m_count + n) | 238 | 68.0k | { | 239 | 68.0k | Index newBufferCount = kInitialCount; | 240 | 84.2k | while (newBufferCount < m_count + n) | 241 | 16.1k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 68.0k | T* newBuffer = _allocate(newBufferCount); | 244 | 68.0k | if (m_capacity) | 245 | 330 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 330 | { | 254 | 1.47k | for (Index i = 0; i < idx; i++) | 255 | 1.14k | newBuffer[i] = m_buffer[i]; | 256 | 330 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 330 | } | 259 | 330 | _deallocateBuffer(); | 260 | 330 | } | 261 | 68.0k | m_buffer = newBuffer; | 262 | 68.0k | m_capacity = newBufferCount; | 263 | 68.0k | } | 264 | 557 | else | 265 | 557 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 557 | { | 270 | 557 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 557 | } | 273 | 557 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.25M | for (Index i = 0; i < n; i++) | 278 | 1.18M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 68.6k | m_count += n; | 281 | 68.6k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 278 | { | 237 | 278 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 278 | else | 265 | 278 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 278 | { | 270 | 278 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 278 | } | 273 | 278 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 569 | for (Index i = 0; i < n; i++) | 278 | 291 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 278 | m_count += n; | 281 | 278 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 64 | { | 237 | 64 | if (m_capacity < m_count + n) | 238 | 24 | { | 239 | 24 | Index newBufferCount = kInitialCount; | 240 | 24 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 24 | T* newBuffer = _allocate(newBufferCount); | 244 | 24 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 24 | m_buffer = newBuffer; | 262 | 24 | m_capacity = newBufferCount; | 263 | 24 | } | 264 | 40 | else | 265 | 40 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 40 | { | 270 | 40 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 40 | } | 273 | 40 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 128 | for (Index i = 0; i < n; i++) | 278 | 64 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 64 | m_count += n; | 281 | 64 | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 713 | { | 237 | 713 | if (m_capacity < m_count + n) | 238 | 713 | { | 239 | 713 | Index newBufferCount = kInitialCount; | 240 | 713 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 713 | T* newBuffer = _allocate(newBufferCount); | 244 | 713 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 713 | m_buffer = newBuffer; | 262 | 713 | m_capacity = newBufferCount; | 263 | 713 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.72k | for (Index i = 0; i < n; i++) | 278 | 1.01k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 713 | m_count += n; | 281 | 713 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 3.62k | { | 237 | 3.62k | if (m_capacity < m_count + n) | 238 | 3.61k | { | 239 | 3.61k | Index newBufferCount = kInitialCount; | 240 | 3.61k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 3.61k | T* newBuffer = _allocate(newBufferCount); | 244 | 3.61k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 3.61k | m_buffer = newBuffer; | 262 | 3.61k | m_capacity = newBufferCount; | 263 | 3.61k | } | 264 | 3 | else | 265 | 3 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 3 | { | 270 | 3 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 3 | } | 273 | 3 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 7.24k | for (Index i = 0; i < n; i++) | 278 | 3.61k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3.62k | m_count += n; | 281 | 3.62k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 47.3k | { | 237 | 47.3k | if (m_capacity < m_count + n) | 238 | 6.54k | { | 239 | 6.54k | Index newBufferCount = kInitialCount; | 240 | 6.54k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 6.54k | T* newBuffer = _allocate(newBufferCount); | 244 | 6.54k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 6.54k | m_buffer = newBuffer; | 262 | 6.54k | m_capacity = newBufferCount; | 263 | 6.54k | } | 264 | 40.7k | else | 265 | 40.7k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 40.7k | { | 270 | 40.7k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 40.7k | } | 273 | 40.7k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 55.6k | for (Index i = 0; i < n; i++) | 278 | 8.31k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 47.3k | m_count += n; | 281 | 47.3k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 129 | { | 237 | 129 | if (m_capacity < m_count + n) | 238 | 129 | { | 239 | 129 | Index newBufferCount = kInitialCount; | 240 | 129 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 129 | T* newBuffer = _allocate(newBufferCount); | 244 | 129 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 129 | m_buffer = newBuffer; | 262 | 129 | m_capacity = newBufferCount; | 263 | 129 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 617 | for (Index i = 0; i < n; i++) | 278 | 488 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 129 | m_count += n; | 281 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 54 | { | 237 | 54 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 6 | else | 265 | 6 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 6 | { | 270 | 6 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 6 | } | 273 | 6 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 102 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 54 | m_count += n; | 281 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19 | { | 237 | 19 | if (m_capacity < m_count + n) | 238 | 19 | { | 239 | 19 | Index newBufferCount = kInitialCount; | 240 | 71 | while (newBufferCount < m_count + n) | 241 | 52 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 19 | T* newBuffer = _allocate(newBufferCount); | 244 | 19 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 19 | m_buffer = newBuffer; | 262 | 19 | m_capacity = newBufferCount; | 263 | 19 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 10.4k | for (Index i = 0; i < n; i++) | 278 | 10.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19 | m_count += n; | 281 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19 | { | 237 | 19 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 19 | else | 265 | 19 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 19 | { | 270 | 19 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 19 | } | 273 | 19 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 19 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19 | m_count += n; | 281 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 44 | { | 239 | 44 | Index newBufferCount = kInitialCount; | 240 | 44 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 44 | T* newBuffer = _allocate(newBufferCount); | 244 | 44 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 44 | m_buffer = newBuffer; | 262 | 44 | m_capacity = newBufferCount; | 263 | 44 | } | 264 | 4 | else | 265 | 4 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 4 | { | 270 | 4 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 4 | } | 273 | 4 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 108 | for (Index i = 0; i < n; i++) | 278 | 60 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 96 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 96 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 7 | { | 237 | 7 | if (m_capacity < m_count + n) | 238 | 7 | { | 239 | 7 | Index newBufferCount = kInitialCount; | 240 | 8 | while (newBufferCount < m_count + n) | 241 | 1 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7 | T* newBuffer = _allocate(newBufferCount); | 244 | 7 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7 | m_buffer = newBuffer; | 262 | 7 | m_capacity = newBufferCount; | 263 | 7 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 31 | for (Index i = 0; i < n; i++) | 278 | 24 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 7 | m_count += n; | 281 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 215 | { | 237 | 215 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 215 | else | 265 | 215 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 215 | { | 270 | 215 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 215 | } | 273 | 215 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 215 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 215 | m_count += n; | 281 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 8 | { | 237 | 8 | if (m_capacity < m_count + n) | 238 | 8 | { | 239 | 8 | Index newBufferCount = kInitialCount; | 240 | 8 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 8 | T* newBuffer = _allocate(newBufferCount); | 244 | 8 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 8 | m_buffer = newBuffer; | 262 | 8 | m_capacity = newBufferCount; | 263 | 8 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 18 | for (Index i = 0; i < n; i++) | 278 | 10 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 8 | m_count += n; | 281 | 8 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 4 | { | 237 | 4 | if (m_capacity < m_count + n) | 238 | 4 | { | 239 | 4 | Index newBufferCount = kInitialCount; | 240 | 4 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4 | T* newBuffer = _allocate(newBufferCount); | 244 | 4 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4 | m_buffer = newBuffer; | 262 | 4 | m_capacity = newBufferCount; | 263 | 4 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 15 | for (Index i = 0; i < n; i++) | 278 | 11 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 4 | m_count += n; | 281 | 4 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 2 | { | 237 | 2 | if (m_capacity < m_count + n) | 238 | 2 | { | 239 | 2 | Index newBufferCount = kInitialCount; | 240 | 2 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 2 | T* newBuffer = _allocate(newBufferCount); | 244 | 2 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 2 | m_buffer = newBuffer; | 262 | 2 | m_capacity = newBufferCount; | 263 | 2 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 6 | for (Index i = 0; i < n; i++) | 278 | 4 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 2 | m_count += n; | 281 | 2 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 1 | { | 237 | 1 | if (m_capacity < m_count + n) | 238 | 1 | { | 239 | 1 | Index newBufferCount = kInitialCount; | 240 | 1 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1 | T* newBuffer = _allocate(newBufferCount); | 244 | 1 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1 | m_buffer = newBuffer; | 262 | 1 | m_capacity = newBufferCount; | 263 | 1 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 2 | for (Index i = 0; i < n; i++) | 278 | 1 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1 | m_count += n; | 281 | 1 | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 280 | { | 237 | 280 | if (m_capacity < m_count + n) | 238 | 276 | { | 239 | 276 | Index newBufferCount = kInitialCount; | 240 | 276 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 276 | T* newBuffer = _allocate(newBufferCount); | 244 | 276 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 276 | m_buffer = newBuffer; | 262 | 276 | m_capacity = newBufferCount; | 263 | 276 | } | 264 | 4 | else | 265 | 4 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 4 | { | 270 | 4 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 4 | } | 273 | 4 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 556 | for (Index i = 0; i < n; i++) | 278 | 276 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 280 | m_count += n; | 281 | 280 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 416 | { | 237 | 416 | if (m_capacity < m_count + n) | 238 | 416 | { | 239 | 416 | Index newBufferCount = kInitialCount; | 240 | 416 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 416 | T* newBuffer = _allocate(newBufferCount); | 244 | 416 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 416 | m_buffer = newBuffer; | 262 | 416 | m_capacity = newBufferCount; | 263 | 416 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.24k | for (Index i = 0; i < n; i++) | 278 | 832 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 416 | m_count += n; | 281 | 416 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE11insertRangeElPKS3_l _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 208 | { | 237 | 208 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 208 | else | 265 | 208 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 208 | { | 270 | 208 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 208 | } | 273 | 208 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 208 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 208 | m_count += n; | 281 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 6.92k | { | 237 | 6.92k | if (m_capacity < m_count + n) | 238 | 6.92k | { | 239 | 6.92k | Index newBufferCount = kInitialCount; | 240 | 7.69k | while (newBufferCount < m_count + n) | 241 | 771 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 6.92k | T* newBuffer = _allocate(newBufferCount); | 244 | 6.92k | if (m_capacity) | 245 | 86 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 86 | { | 254 | 1.14M | for (Index i = 0; i < idx; i++) | 255 | 1.14M | newBuffer[i] = m_buffer[i]; | 256 | 86 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 86 | } | 259 | 86 | _deallocateBuffer(); | 260 | 86 | } | 261 | 6.92k | m_buffer = newBuffer; | 262 | 6.92k | m_capacity = newBufferCount; | 263 | 6.92k | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 29.4k | for (Index i = 0; i < n; i++) | 278 | 22.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 6.92k | m_count += n; | 281 | 6.92k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 86 | { | 237 | 86 | if (m_capacity < m_count + n) | 238 | 86 | { | 239 | 86 | Index newBufferCount = kInitialCount; | 240 | 857 | while (newBufferCount < m_count + n) | 241 | 771 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 86 | T* newBuffer = _allocate(newBufferCount); | 244 | 86 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 86 | m_buffer = newBuffer; | 262 | 86 | m_capacity = newBufferCount; | 263 | 86 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.14M | for (Index i = 0; i < n; i++) | 278 | 1.14M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 86 | m_count += n; | 281 | 86 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIcNS_17StandardAllocatorEE11insertRangeElPKcl Line | Count | Source | 236 | 8.02k | { | 237 | 8.02k | if (m_capacity < m_count + n) | 238 | 8.00k | { | 239 | 8.00k | Index newBufferCount = kInitialCount; | 240 | 32.5k | while (newBufferCount < m_count + n) | 241 | 24.5k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 8.00k | T* newBuffer = _allocate(newBufferCount); | 244 | 8.00k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 8.00k | m_buffer = newBuffer; | 262 | 8.00k | m_capacity = newBufferCount; | 263 | 8.00k | } | 264 | 23 | else | 265 | 23 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 23 | { | 270 | 23 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 23 | } | 273 | 23 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 20.9M | for (Index i = 0; i < n; i++) | 278 | 20.9M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 8.02k | m_count += n; | 281 | 8.02k | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 36 | { | 237 | 36 | if (m_capacity < m_count + n) | 238 | 36 | { | 239 | 36 | Index newBufferCount = kInitialCount; | 240 | 72 | while (newBufferCount < m_count + n) | 241 | 36 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 36 | T* newBuffer = _allocate(newBufferCount); | 244 | 36 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 36 | m_buffer = newBuffer; | 262 | 36 | m_capacity = newBufferCount; | 263 | 36 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 720 | for (Index i = 0; i < n; i++) | 278 | 684 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 36 | m_count += n; | 281 | 36 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE11insertRangeElPKS1_l _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 3 | { | 237 | 3 | if (m_capacity < m_count + n) | 238 | 3 | { | 239 | 3 | Index newBufferCount = kInitialCount; | 240 | 3 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 3 | T* newBuffer = _allocate(newBufferCount); | 244 | 3 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 3 | m_buffer = newBuffer; | 262 | 3 | m_capacity = newBufferCount; | 263 | 3 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 14 | for (Index i = 0; i < n; i++) | 278 | 11 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3 | m_count += n; | 281 | 3 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 417 | { | 237 | 417 | if (m_capacity < m_count + n) | 238 | 40 | { | 239 | 40 | Index newBufferCount = kInitialCount; | 240 | 40 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 40 | T* newBuffer = _allocate(newBufferCount); | 244 | 40 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 40 | m_buffer = newBuffer; | 262 | 40 | m_capacity = newBufferCount; | 263 | 40 | } | 264 | 377 | else | 265 | 377 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 377 | { | 270 | 377 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 377 | } | 273 | 377 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 468 | for (Index i = 0; i < n; i++) | 278 | 51 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 417 | m_count += n; | 281 | 417 | } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 381 | { | 237 | 381 | if (m_capacity < m_count + n) | 238 | 373 | { | 239 | 373 | Index newBufferCount = kInitialCount; | 240 | 373 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 373 | T* newBuffer = _allocate(newBufferCount); | 244 | 373 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 373 | m_buffer = newBuffer; | 262 | 373 | m_capacity = newBufferCount; | 263 | 373 | } | 264 | 8 | else | 265 | 8 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 8 | { | 270 | 8 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 8 | } | 273 | 8 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.26k | for (Index i = 0; i < n; i++) | 278 | 888 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 381 | m_count += n; | 281 | 381 | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 6.48k | { | 237 | 6.48k | if (m_capacity < m_count + n) | 238 | 118 | { | 239 | 118 | Index newBufferCount = kInitialCount; | 240 | 175 | while (newBufferCount < m_count + n) | 241 | 57 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 118 | T* newBuffer = _allocate(newBufferCount); | 244 | 118 | if (m_capacity) | 245 | 36 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 36 | { | 254 | 486 | for (Index i = 0; i < idx; i++) | 255 | 450 | newBuffer[i] = m_buffer[i]; | 256 | 36 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 36 | } | 259 | 36 | _deallocateBuffer(); | 260 | 36 | } | 261 | 118 | m_buffer = newBuffer; | 262 | 118 | m_capacity = newBufferCount; | 263 | 118 | } | 264 | 6.36k | else | 265 | 6.36k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 6.36k | { | 270 | 6.36k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 6.36k | } | 273 | 6.36k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 57.6k | for (Index i = 0; i < n; i++) | 278 | 51.1k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 6.48k | m_count += n; | 281 | 6.48k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 34.7k | { | 237 | 34.7k | if (m_capacity < m_count + n) | 238 | 287 | { | 239 | 287 | Index newBufferCount = kInitialCount; | 240 | 793 | while (newBufferCount < m_count + n) | 241 | 506 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 287 | T* newBuffer = _allocate(newBufferCount); | 244 | 287 | if (m_capacity) | 245 | 200 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 200 | { | 254 | 26.1k | for (Index i = 0; i < idx; i++) | 255 | 25.9k | newBuffer[i] = m_buffer[i]; | 256 | 200 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 200 | } | 259 | 200 | _deallocateBuffer(); | 260 | 200 | } | 261 | 287 | m_buffer = newBuffer; | 262 | 287 | m_capacity = newBufferCount; | 263 | 287 | } | 264 | 34.4k | else | 265 | 34.4k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 34.4k | { | 270 | 34.4k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 34.4k | } | 273 | 34.4k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 140k | for (Index i = 0; i < n; i++) | 278 | 105k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 34.7k | m_count += n; | 281 | 34.7k | } |
|
282 | | |
283 | | void insertRange(Index id, const List<T>& list) |
284 | 2 | { |
285 | 2 | insertRange(id, list.m_buffer, list.m_count); |
286 | 2 | } |
287 | | |
288 | 2 | void addRange(ArrayView<T> list) { insertRange(m_count, list.getBuffer(), list.getCount()); } |
289 | | |
290 | 422k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); }_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 86 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8addRangeEPKS3_l Line | Count | Source | 290 | 67 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE8addRangeEPKjl Line | Count | Source | 290 | 68.6k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8addRangeEPKhl Line | Count | Source | 290 | 295k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE8addRangeEPKS2_l _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 1.20k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 1 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 6.92k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 86 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE8addRangeEPKcl Line | Count | Source | 290 | 8.02k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 36 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE8addRangeEPKS1_l Unexecuted instantiation: _ZN5Slang4ListImNS_17StandardAllocatorEE8addRangeEPKml _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 5 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 381 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 6.48k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 34.7k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
|
291 | | |
292 | 20.1M | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); }_ZN5Slang4ListImNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 19.0M | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 317 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 42.2k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 25.7k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 3.04k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 9.03k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 7.95k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 405k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 290 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 16.0k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 90.1k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 363k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE8addRangeERKS5_ Line | Count | Source | 292 | 3.98k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 25 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 104 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 8 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 14.0k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 1 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 1 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 848 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 642 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE8addRangeERKS5_ Line | Count | Source | 292 | 400 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 122 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 26 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 963 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 1.78k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 68.6k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 278 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 64 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 713 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 3.62k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 47.3k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 129 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 54 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 19 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 19 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 7 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 215 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 8 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 4 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 1 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 1 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 280 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 416 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8addRangeERKS5_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 208 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 9 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 3 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
|
293 | | |
294 | | void removeRange(Index idx, Index count) |
295 | 664 | { |
296 | 664 | SLANG_ASSERT(idx >= 0 && idx <= m_count); |
297 | | |
298 | 664 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; |
299 | 901 | for (Index i = idx + actualDeleteCount; i < m_count; i++) |
300 | 237 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); |
301 | 664 | m_count -= actualDeleteCount; |
302 | 664 | } _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 450 | { | 296 | 450 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 450 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 496 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 46 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 450 | m_count -= actualDeleteCount; | 302 | 450 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 59 | { | 296 | 59 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 59 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 59 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 0 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 59 | m_count -= actualDeleteCount; | 302 | 59 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 5 | { | 296 | 5 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 5 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 16 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 11 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 5 | m_count -= actualDeleteCount; | 302 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE11removeRangeEll Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 37 | { | 296 | 37 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 37 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 42 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 5 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 37 | m_count -= actualDeleteCount; | 302 | 37 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 109 | { | 296 | 109 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 109 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 284 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 175 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 109 | m_count -= actualDeleteCount; | 302 | 109 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 4 | { | 296 | 4 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 4 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 4 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 0 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 4 | m_count -= actualDeleteCount; | 302 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE11removeRangeEll |
303 | | |
304 | 170 | void removeAt(Index id) { removeRange(id, 1); }Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 59 | void removeAt(Index id) { removeRange(id, 1); } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 5 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8removeAtEl Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 37 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 65 | void removeAt(Index id) { removeRange(id, 1); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 4 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE8removeAtEl |
305 | | |
306 | | void remove(const T& val) |
307 | 59 | { |
308 | 59 | Index idx = indexOf(val); |
309 | 59 | if (idx != -1) |
310 | 59 | removeAt(idx); |
311 | 59 | } Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE6removeERKS2_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE6removeERKS2_ Line | Count | Source | 307 | 59 | { | 308 | 59 | Index idx = indexOf(val); | 309 | 59 | if (idx != -1) | 310 | 59 | removeAt(idx); | 311 | 59 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE6removeERKS2_ |
312 | | |
313 | | void reverse() |
314 | 73.2k | { |
315 | 86.0k | for (Index i = 0; i < (m_count >> 1); i++) |
316 | 12.7k | { |
317 | 12.7k | swapElements(m_buffer, i, m_count - i - 1); |
318 | 12.7k | } |
319 | 73.2k | } _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 10.0k | { | 315 | 10.3k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 248 | { | 317 | 248 | swapElements(m_buffer, i, m_count - i - 1); | 318 | 248 | } | 319 | 10.0k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 475 | { | 315 | 881 | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 406 | { | 317 | 406 | swapElements(m_buffer, i, m_count - i - 1); | 318 | 406 | } | 319 | 475 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 48.1k | { | 315 | 51.2k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 3.13k | { | 317 | 3.13k | swapElements(m_buffer, i, m_count - i - 1); | 318 | 3.13k | } | 319 | 48.1k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 14.5k | { | 315 | 23.5k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 8.95k | { | 317 | 8.95k | swapElements(m_buffer, i, m_count - i - 1); | 318 | 8.95k | } | 319 | 14.5k | } |
|
320 | | |
321 | | void fastRemove(const T& val) |
322 | | { |
323 | | Index idx = indexOf(val); |
324 | | if (idx >= 0) |
325 | | { |
326 | | fastRemoveAt(idx); |
327 | | } |
328 | | } |
329 | | |
330 | | void fastRemoveAt(Index idx) |
331 | 3.60M | { |
332 | 3.60M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the |
334 | | // assumption that any reasonable move implementation tests and ignores this case |
335 | 3.60M | if (idx != m_count - 1) |
336 | 2.74M | { |
337 | 2.74M | m_buffer[idx] = _Move(m_buffer[m_count - 1]); |
338 | 2.74M | } |
339 | 3.60M | m_count--; |
340 | 3.60M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 1.69M | { | 332 | 1.69M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 1.69M | if (idx != m_count - 1) | 336 | 1.51M | { | 337 | 1.51M | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 1.51M | } | 339 | 1.69M | m_count--; | 340 | 1.69M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE12fastRemoveAtEl _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 133k | { | 332 | 133k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 133k | if (idx != m_count - 1) | 336 | 115k | { | 337 | 115k | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 115k | } | 339 | 133k | m_count--; | 340 | 133k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE12fastRemoveAtEl _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 1.77M | { | 332 | 1.77M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 1.77M | if (idx != m_count - 1) | 336 | 1.11M | { | 337 | 1.11M | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 1.11M | } | 339 | 1.77M | m_count--; | 340 | 1.77M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE12fastRemoveAtEl |
341 | | |
342 | 4.66M | void clear() { m_count = 0; }_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 86 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 147 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.85k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 553k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 17 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 23 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 2.47k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 70.8k | void clear() { m_count = 0; } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.76k | void clear() { m_count = 0; } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 100 | void clear() { m_count = 0; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.14k | void clear() { m_count = 0; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 8.98k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.17k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 5 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 97 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 5.05k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 127k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 8.11k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 278 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 171 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListImNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.42M | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 244k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61.3k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 160 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.46k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.49k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIcNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.04k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61 | void clear() { m_count = 0; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.16k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 61 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 70 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 2 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E5clearEv Line | Count | Source | 342 | 172 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 120k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.17k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 23 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 631 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 381 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 82 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 2.97k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 2.97k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.85k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 15 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 5 | void clear() { m_count = 0; } |
|
343 | | |
344 | | void clearAndDeallocate() |
345 | 20.0M | { |
346 | 20.0M | _deallocateBuffer(); |
347 | 20.0M | m_count = m_capacity = 0; |
348 | 20.0M | } _ZN5Slang4ListImNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19.0M | { | 346 | 19.0M | _deallocateBuffer(); | 347 | 19.0M | m_count = m_capacity = 0; | 348 | 19.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 317 | { | 346 | 317 | _deallocateBuffer(); | 347 | 317 | m_count = m_capacity = 0; | 348 | 317 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 42.0k | { | 346 | 42.0k | _deallocateBuffer(); | 347 | 42.0k | m_count = m_capacity = 0; | 348 | 42.0k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 34 | { | 346 | 34 | _deallocateBuffer(); | 347 | 34 | m_count = m_capacity = 0; | 348 | 34 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 34 | { | 346 | 34 | _deallocateBuffer(); | 347 | 34 | m_count = m_capacity = 0; | 348 | 34 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 25.7k | { | 346 | 25.7k | _deallocateBuffer(); | 347 | 25.7k | m_count = m_capacity = 0; | 348 | 25.7k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3.04k | { | 346 | 3.04k | _deallocateBuffer(); | 347 | 3.04k | m_count = m_capacity = 0; | 348 | 3.04k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7.63k | { | 346 | 7.63k | _deallocateBuffer(); | 347 | 7.63k | m_count = m_capacity = 0; | 348 | 7.63k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7.90k | { | 346 | 7.90k | _deallocateBuffer(); | 347 | 7.90k | m_count = m_capacity = 0; | 348 | 7.90k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 404k | { | 346 | 404k | _deallocateBuffer(); | 347 | 404k | m_count = m_capacity = 0; | 348 | 404k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 290 | { | 346 | 290 | _deallocateBuffer(); | 347 | 290 | m_count = m_capacity = 0; | 348 | 290 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 16.0k | { | 346 | 16.0k | _deallocateBuffer(); | 347 | 16.0k | m_count = m_capacity = 0; | 348 | 16.0k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 346k | { | 346 | 346k | _deallocateBuffer(); | 347 | 346k | m_count = m_capacity = 0; | 348 | 346k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 90.0k | { | 346 | 90.0k | _deallocateBuffer(); | 347 | 90.0k | m_count = m_capacity = 0; | 348 | 90.0k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 25 | { | 346 | 25 | _deallocateBuffer(); | 347 | 25 | m_count = m_capacity = 0; | 348 | 25 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 104 | { | 346 | 104 | _deallocateBuffer(); | 347 | 104 | m_count = m_capacity = 0; | 348 | 104 | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 8 | { | 346 | 8 | _deallocateBuffer(); | 347 | 8 | m_count = m_capacity = 0; | 348 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIjNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 5.84k | { | 346 | 5.84k | _deallocateBuffer(); | 347 | 5.84k | m_count = m_capacity = 0; | 348 | 5.84k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1 | { | 346 | 1 | _deallocateBuffer(); | 347 | 1 | m_count = m_capacity = 0; | 348 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1 | { | 346 | 1 | _deallocateBuffer(); | 347 | 1 | m_count = m_capacity = 0; | 348 | 1 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 848 | { | 346 | 848 | _deallocateBuffer(); | 347 | 848 | m_count = m_capacity = 0; | 348 | 848 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 400 | { | 346 | 400 | _deallocateBuffer(); | 347 | 400 | m_count = m_capacity = 0; | 348 | 400 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 122 | { | 346 | 122 | _deallocateBuffer(); | 347 | 122 | m_count = m_capacity = 0; | 348 | 122 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 26 | { | 346 | 26 | _deallocateBuffer(); | 347 | 26 | m_count = m_capacity = 0; | 348 | 26 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 963 | { | 346 | 963 | _deallocateBuffer(); | 347 | 963 | m_count = m_capacity = 0; | 348 | 963 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1.78k | { | 346 | 1.78k | _deallocateBuffer(); | 347 | 1.78k | m_count = m_capacity = 0; | 348 | 1.78k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 89 | { | 346 | 89 | _deallocateBuffer(); | 347 | 89 | m_count = m_capacity = 0; | 348 | 89 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 713 | { | 346 | 713 | _deallocateBuffer(); | 347 | 713 | m_count = m_capacity = 0; | 348 | 713 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3.62k | { | 346 | 3.62k | _deallocateBuffer(); | 347 | 3.62k | m_count = m_capacity = 0; | 348 | 3.62k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 47.3k | { | 346 | 47.3k | _deallocateBuffer(); | 347 | 47.3k | m_count = m_capacity = 0; | 348 | 47.3k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 129 | { | 346 | 129 | _deallocateBuffer(); | 347 | 129 | m_count = m_capacity = 0; | 348 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 54 | { | 346 | 54 | _deallocateBuffer(); | 347 | 54 | m_count = m_capacity = 0; | 348 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19 | { | 346 | 19 | _deallocateBuffer(); | 347 | 19 | m_count = m_capacity = 0; | 348 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19 | { | 346 | 19 | _deallocateBuffer(); | 347 | 19 | m_count = m_capacity = 0; | 348 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7 | { | 346 | 7 | _deallocateBuffer(); | 347 | 7 | m_count = m_capacity = 0; | 348 | 7 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7 | { | 346 | 7 | _deallocateBuffer(); | 347 | 7 | m_count = m_capacity = 0; | 348 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 215 | { | 346 | 215 | _deallocateBuffer(); | 347 | 215 | m_count = m_capacity = 0; | 348 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 8 | { | 346 | 8 | _deallocateBuffer(); | 347 | 8 | m_count = m_capacity = 0; | 348 | 8 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 4 | { | 346 | 4 | _deallocateBuffer(); | 347 | 4 | m_count = m_capacity = 0; | 348 | 4 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1 | { | 346 | 1 | _deallocateBuffer(); | 347 | 1 | m_count = m_capacity = 0; | 348 | 1 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1 | { | 346 | 1 | _deallocateBuffer(); | 347 | 1 | m_count = m_capacity = 0; | 348 | 1 | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 280 | { | 346 | 280 | _deallocateBuffer(); | 347 | 280 | m_count = m_capacity = 0; | 348 | 280 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 416 | { | 346 | 416 | _deallocateBuffer(); | 347 | 416 | m_count = m_capacity = 0; | 348 | 416 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 208 | { | 346 | 208 | _deallocateBuffer(); | 347 | 208 | m_count = m_capacity = 0; | 348 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 9 | { | 346 | 9 | _deallocateBuffer(); | 347 | 9 | m_count = m_capacity = 0; | 348 | 9 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3 | { | 346 | 3 | _deallocateBuffer(); | 347 | 3 | m_count = m_capacity = 0; | 348 | 3 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 21 | { | 346 | 21 | _deallocateBuffer(); | 347 | 21 | m_count = m_capacity = 0; | 348 | 21 | } |
|
349 | | |
350 | | void reserve(Index size) |
351 | 24.8M | { |
352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect |
353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be |
354 | | // negative). |
355 | 24.8M | if (UIndex(size) > UIndex(m_capacity)) |
356 | 19.9M | { |
357 | 19.9M | T* newBuffer = _allocate(size); |
358 | 19.9M | if (m_capacity) |
359 | 524k | { |
360 | | /*if (std::has_trivial_copy_assign<T>::value && |
361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * |
362 | | sizeof(T)); else*/ |
363 | 524k | { |
364 | 987M | for (Index i = 0; i < m_count; i++) |
365 | 987M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); |
366 | | |
367 | | // Default-initialize the remaining elements |
368 | 140M | for (Index i = m_count; i < size; i++) |
369 | 139M | { |
370 | 139M | new (newBuffer + i) T(); |
371 | 139M | } |
372 | 524k | } |
373 | 524k | _deallocateBuffer(); |
374 | 524k | } |
375 | 19.9M | m_buffer = newBuffer; |
376 | 19.9M | m_capacity = size; |
377 | 19.9M | } |
378 | 24.8M | } _ZN5Slang4ListImNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9.04M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9.04M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7.14M | { | 357 | 7.14M | T* newBuffer = _allocate(size); | 358 | 7.14M | if (m_capacity) | 359 | 316 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 316 | { | 364 | 42.6k | for (Index i = 0; i < m_count; i++) | 365 | 42.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 42.6k | for (Index i = m_count; i < size; i++) | 369 | 42.2k | { | 370 | 42.2k | new (newBuffer + i) T(); | 371 | 42.2k | } | 372 | 316 | } | 373 | 316 | _deallocateBuffer(); | 374 | 316 | } | 375 | 7.14M | m_buffer = newBuffer; | 376 | 7.14M | m_capacity = size; | 377 | 7.14M | } | 378 | 9.04M | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.11k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.11k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.11k | { | 357 | 1.11k | T* newBuffer = _allocate(size); | 358 | 1.11k | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 1.11k | m_buffer = newBuffer; | 376 | 1.11k | m_capacity = size; | 377 | 1.11k | } | 378 | 1.11k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.94M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.94M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 36.3k | { | 357 | 36.3k | T* newBuffer = _allocate(size); | 358 | 36.3k | if (m_capacity) | 359 | 32.1k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 32.1k | { | 364 | 898M | for (Index i = 0; i < m_count; i++) | 365 | 898M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 50.8M | for (Index i = m_count; i < size; i++) | 369 | 50.7M | { | 370 | 50.7M | new (newBuffer + i) T(); | 371 | 50.7M | } | 372 | 32.1k | } | 373 | 32.1k | _deallocateBuffer(); | 374 | 32.1k | } | 375 | 36.3k | m_buffer = newBuffer; | 376 | 36.3k | m_capacity = size; | 377 | 36.3k | } | 378 | 2.94M | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 15.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 15.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 15.9k | { | 357 | 15.9k | T* newBuffer = _allocate(size); | 358 | 15.9k | if (m_capacity) | 359 | 888 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 888 | { | 364 | 23.1k | for (Index i = 0; i < m_count; i++) | 365 | 22.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 23.1k | for (Index i = m_count; i < size; i++) | 369 | 22.2k | { | 370 | 22.2k | new (newBuffer + i) T(); | 371 | 22.2k | } | 372 | 888 | } | 373 | 888 | _deallocateBuffer(); | 374 | 888 | } | 375 | 15.9k | m_buffer = newBuffer; | 376 | 15.9k | m_capacity = size; | 377 | 15.9k | } | 378 | 15.9k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 5.57k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 5.57k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 5.57k | { | 357 | 5.57k | T* newBuffer = _allocate(size); | 358 | 5.57k | if (m_capacity) | 359 | 2.48k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2.48k | { | 364 | 295k | for (Index i = 0; i < m_count; i++) | 365 | 292k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 295k | for (Index i = m_count; i < size; i++) | 369 | 292k | { | 370 | 292k | new (newBuffer + i) T(); | 371 | 292k | } | 372 | 2.48k | } | 373 | 2.48k | _deallocateBuffer(); | 374 | 2.48k | } | 375 | 5.57k | m_buffer = newBuffer; | 376 | 5.57k | m_capacity = size; | 377 | 5.57k | } | 378 | 5.57k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.97k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.97k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.97k | { | 357 | 2.97k | T* newBuffer = _allocate(size); | 358 | 2.97k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.97k | m_buffer = newBuffer; | 376 | 2.97k | m_capacity = size; | 377 | 2.97k | } | 378 | 2.97k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 247 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 247 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 247 | { | 357 | 247 | T* newBuffer = _allocate(size); | 358 | 247 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 247 | m_buffer = newBuffer; | 376 | 247 | m_capacity = size; | 377 | 247 | } | 378 | 247 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 163 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 163 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 163 | { | 357 | 163 | T* newBuffer = _allocate(size); | 358 | 163 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 163 | m_buffer = newBuffer; | 376 | 163 | m_capacity = size; | 377 | 163 | } | 378 | 163 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 801k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 801k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 801k | { | 357 | 801k | T* newBuffer = _allocate(size); | 358 | 801k | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 801k | m_buffer = newBuffer; | 376 | 801k | m_capacity = size; | 377 | 801k | } | 378 | 801k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 1.04k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.04k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.04k | { | 357 | 1.04k | T* newBuffer = _allocate(size); | 358 | 1.04k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.04k | m_buffer = newBuffer; | 376 | 1.04k | m_capacity = size; | 377 | 1.04k | } | 378 | 1.04k | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.04k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.04k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.04k | { | 357 | 1.04k | T* newBuffer = _allocate(size); | 358 | 1.04k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.04k | m_buffer = newBuffer; | 376 | 1.04k | m_capacity = size; | 377 | 1.04k | } | 378 | 1.04k | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.04k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.04k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.04k | { | 357 | 1.04k | T* newBuffer = _allocate(size); | 358 | 1.04k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.04k | m_buffer = newBuffer; | 376 | 1.04k | m_capacity = size; | 377 | 1.04k | } | 378 | 1.04k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6.54M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6.54M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6.52M | { | 357 | 6.52M | T* newBuffer = _allocate(size); | 358 | 6.52M | if (m_capacity) | 359 | 256k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 256k | { | 364 | 19.5M | for (Index i = 0; i < m_count; i++) | 365 | 19.2M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 19.5M | for (Index i = m_count; i < size; i++) | 369 | 19.2M | { | 370 | 19.2M | new (newBuffer + i) T(); | 371 | 19.2M | } | 372 | 256k | } | 373 | 256k | _deallocateBuffer(); | 374 | 256k | } | 375 | 6.52M | m_buffer = newBuffer; | 376 | 6.52M | m_capacity = size; | 377 | 6.52M | } | 378 | 6.54M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.07k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.07k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.07k | { | 357 | 2.07k | T* newBuffer = _allocate(size); | 358 | 2.07k | if (m_capacity) | 359 | 1.63k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.63k | { | 364 | 1.66M | for (Index i = 0; i < m_count; i++) | 365 | 1.66M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.66M | for (Index i = m_count; i < size; i++) | 369 | 1.66M | { | 370 | 1.66M | new (newBuffer + i) T(); | 371 | 1.66M | } | 372 | 1.63k | } | 373 | 1.63k | _deallocateBuffer(); | 374 | 1.63k | } | 375 | 2.07k | m_buffer = newBuffer; | 376 | 2.07k | m_capacity = size; | 377 | 2.07k | } | 378 | 2.07k | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.47k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.47k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.47k | { | 357 | 2.47k | T* newBuffer = _allocate(size); | 358 | 2.47k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.47k | m_buffer = newBuffer; | 376 | 2.47k | m_capacity = size; | 377 | 2.47k | } | 378 | 2.47k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.84k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.84k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.84k | { | 357 | 1.84k | T* newBuffer = _allocate(size); | 358 | 1.84k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.84k | m_buffer = newBuffer; | 376 | 1.84k | m_capacity = size; | 377 | 1.84k | } | 378 | 1.84k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.10k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.10k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.10k | { | 357 | 1.10k | T* newBuffer = _allocate(size); | 358 | 1.10k | if (m_capacity) | 359 | 18 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 18 | { | 364 | 434 | for (Index i = 0; i < m_count; i++) | 365 | 416 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 434 | for (Index i = m_count; i < size; i++) | 369 | 416 | { | 370 | 416 | new (newBuffer + i) T(); | 371 | 416 | } | 372 | 18 | } | 373 | 18 | _deallocateBuffer(); | 374 | 18 | } | 375 | 1.10k | m_buffer = newBuffer; | 376 | 1.10k | m_capacity = size; | 377 | 1.10k | } | 378 | 1.10k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.07M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.07M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.07M | { | 357 | 1.07M | T* newBuffer = _allocate(size); | 358 | 1.07M | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.07M | m_buffer = newBuffer; | 376 | 1.07M | m_capacity = size; | 377 | 1.07M | } | 378 | 1.07M | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10.0k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10.0k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10.0k | { | 357 | 10.0k | T* newBuffer = _allocate(size); | 358 | 10.0k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 10.0k | m_buffer = newBuffer; | 376 | 10.0k | m_capacity = size; | 377 | 10.0k | } | 378 | 10.0k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 99.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 99.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 99.1k | { | 357 | 99.1k | T* newBuffer = _allocate(size); | 358 | 99.1k | if (m_capacity) | 359 | 2.88k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2.88k | { | 364 | 323k | for (Index i = 0; i < m_count; i++) | 365 | 320k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 323k | for (Index i = m_count; i < size; i++) | 369 | 320k | { | 370 | 320k | new (newBuffer + i) T(); | 371 | 320k | } | 372 | 2.88k | } | 373 | 2.88k | _deallocateBuffer(); | 374 | 2.88k | } | 375 | 99.1k | m_buffer = newBuffer; | 376 | 99.1k | m_capacity = size; | 377 | 99.1k | } | 378 | 99.1k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 30 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 30 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 30 | { | 357 | 30 | T* newBuffer = _allocate(size); | 358 | 30 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 30 | m_buffer = newBuffer; | 376 | 30 | m_capacity = size; | 377 | 30 | } | 378 | 30 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.02k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.02k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.02k | { | 357 | 1.02k | T* newBuffer = _allocate(size); | 358 | 1.02k | if (m_capacity) | 359 | 14 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 14 | { | 364 | 542 | for (Index i = 0; i < m_count; i++) | 365 | 528 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 542 | for (Index i = m_count; i < size; i++) | 369 | 528 | { | 370 | 528 | new (newBuffer + i) T(); | 371 | 528 | } | 372 | 14 | } | 373 | 14 | _deallocateBuffer(); | 374 | 14 | } | 375 | 1.02k | m_buffer = newBuffer; | 376 | 1.02k | m_capacity = size; | 377 | 1.02k | } | 378 | 1.02k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 264k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 264k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 244k | { | 357 | 244k | T* newBuffer = _allocate(size); | 358 | 244k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 244k | m_buffer = newBuffer; | 376 | 244k | m_capacity = size; | 377 | 244k | } | 378 | 264k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 31.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 31.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 30.9k | { | 357 | 30.9k | T* newBuffer = _allocate(size); | 358 | 30.9k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 30.9k | m_buffer = newBuffer; | 376 | 30.9k | m_capacity = size; | 377 | 30.9k | } | 378 | 31.1k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 206 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 206 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 206 | { | 357 | 206 | T* newBuffer = _allocate(size); | 358 | 206 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 206 | m_buffer = newBuffer; | 376 | 206 | m_capacity = size; | 377 | 206 | } | 378 | 206 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 445 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 445 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 445 | { | 357 | 445 | T* newBuffer = _allocate(size); | 358 | 445 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 445 | m_buffer = newBuffer; | 376 | 445 | m_capacity = size; | 377 | 445 | } | 378 | 445 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 751 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 751 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 751 | { | 357 | 751 | T* newBuffer = _allocate(size); | 358 | 751 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 751 | m_buffer = newBuffer; | 376 | 751 | m_capacity = size; | 377 | 751 | } | 378 | 751 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 12 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 12 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 12 | { | 357 | 12 | T* newBuffer = _allocate(size); | 358 | 12 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 12 | m_buffer = newBuffer; | 376 | 12 | m_capacity = size; | 377 | 12 | } | 378 | 12 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 44.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 44.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 40.5k | { | 357 | 40.5k | T* newBuffer = _allocate(size); | 358 | 40.5k | if (m_capacity) | 359 | 3.36k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3.36k | { | 364 | 305k | for (Index i = 0; i < m_count; i++) | 365 | 302k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 305k | for (Index i = m_count; i < size; i++) | 369 | 302k | { | 370 | 302k | new (newBuffer + i) T(); | 371 | 302k | } | 372 | 3.36k | } | 373 | 3.36k | _deallocateBuffer(); | 374 | 3.36k | } | 375 | 40.5k | m_buffer = newBuffer; | 376 | 40.5k | m_capacity = size; | 377 | 40.5k | } | 378 | 44.1k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 46.5k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 46.5k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 46.5k | { | 357 | 46.5k | T* newBuffer = _allocate(size); | 358 | 46.5k | if (m_capacity) | 359 | 120 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 120 | { | 364 | 600 | for (Index i = 0; i < m_count; i++) | 365 | 480 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 600 | for (Index i = m_count; i < size; i++) | 369 | 480 | { | 370 | 480 | new (newBuffer + i) T(); | 371 | 480 | } | 372 | 120 | } | 373 | 120 | _deallocateBuffer(); | 374 | 120 | } | 375 | 46.5k | m_buffer = newBuffer; | 376 | 46.5k | m_capacity = size; | 377 | 46.5k | } | 378 | 46.5k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 706k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 706k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 706k | { | 357 | 706k | T* newBuffer = _allocate(size); | 358 | 706k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 706k | m_buffer = newBuffer; | 376 | 706k | m_capacity = size; | 377 | 706k | } | 378 | 706k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28.1k | { | 357 | 28.1k | T* newBuffer = _allocate(size); | 358 | 28.1k | if (m_capacity) | 359 | 2.91k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2.91k | { | 364 | 49.5k | for (Index i = 0; i < m_count; i++) | 365 | 46.6k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 49.5k | for (Index i = m_count; i < size; i++) | 369 | 46.6k | { | 370 | 46.6k | new (newBuffer + i) T(); | 371 | 46.6k | } | 372 | 2.91k | } | 373 | 2.91k | _deallocateBuffer(); | 374 | 2.91k | } | 375 | 28.1k | m_buffer = newBuffer; | 376 | 28.1k | m_capacity = size; | 377 | 28.1k | } | 378 | 28.1k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 102k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 102k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 102k | { | 357 | 102k | T* newBuffer = _allocate(size); | 358 | 102k | if (m_capacity) | 359 | 45.5k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 45.5k | { | 364 | 1.49M | for (Index i = 0; i < m_count; i++) | 365 | 1.44M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.49M | for (Index i = m_count; i < size; i++) | 369 | 1.44M | { | 370 | 1.44M | new (newBuffer + i) T(); | 371 | 1.44M | } | 372 | 45.5k | } | 373 | 45.5k | _deallocateBuffer(); | 374 | 45.5k | } | 375 | 102k | m_buffer = newBuffer; | 376 | 102k | m_capacity = size; | 377 | 102k | } | 378 | 102k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 565 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 565 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 565 | { | 357 | 565 | T* newBuffer = _allocate(size); | 358 | 565 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 565 | m_buffer = newBuffer; | 376 | 565 | m_capacity = size; | 377 | 565 | } | 378 | 565 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 475 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 475 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 475 | { | 357 | 475 | T* newBuffer = _allocate(size); | 358 | 475 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 475 | m_buffer = newBuffer; | 376 | 475 | m_capacity = size; | 377 | 475 | } | 378 | 475 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 542 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 542 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 542 | { | 357 | 542 | T* newBuffer = _allocate(size); | 358 | 542 | if (m_capacity) | 359 | 61 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 61 | { | 364 | 4.41k | for (Index i = 0; i < m_count; i++) | 365 | 4.35k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 4.41k | for (Index i = m_count; i < size; i++) | 369 | 4.35k | { | 370 | 4.35k | new (newBuffer + i) T(); | 371 | 4.35k | } | 372 | 61 | } | 373 | 61 | _deallocateBuffer(); | 374 | 61 | } | 375 | 542 | m_buffer = newBuffer; | 376 | 542 | m_capacity = size; | 377 | 542 | } | 378 | 542 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.61k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.61k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.61k | { | 357 | 1.61k | T* newBuffer = _allocate(size); | 358 | 1.61k | if (m_capacity) | 359 | 108 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 108 | { | 364 | 1.83k | for (Index i = 0; i < m_count; i++) | 365 | 1.72k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.83k | for (Index i = m_count; i < size; i++) | 369 | 1.72k | { | 370 | 1.72k | new (newBuffer + i) T(); | 371 | 1.72k | } | 372 | 108 | } | 373 | 108 | _deallocateBuffer(); | 374 | 108 | } | 375 | 1.61k | m_buffer = newBuffer; | 376 | 1.61k | m_capacity = size; | 377 | 1.61k | } | 378 | 1.61k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 296k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 296k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 296k | { | 357 | 296k | T* newBuffer = _allocate(size); | 358 | 296k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 296k | m_buffer = newBuffer; | 376 | 296k | m_capacity = size; | 377 | 296k | } | 378 | 296k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 228 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 228 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 228 | { | 357 | 228 | T* newBuffer = _allocate(size); | 358 | 228 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 228 | m_buffer = newBuffer; | 376 | 228 | m_capacity = size; | 377 | 228 | } | 378 | 228 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 16 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 16 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 16 | { | 357 | 16 | T* newBuffer = _allocate(size); | 358 | 16 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 16 | m_buffer = newBuffer; | 376 | 16 | m_capacity = size; | 377 | 16 | } | 378 | 16 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 32 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 32 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 32 | { | 357 | 32 | T* newBuffer = _allocate(size); | 358 | 32 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 32 | m_buffer = newBuffer; | 376 | 32 | m_capacity = size; | 377 | 32 | } | 378 | 32 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.46k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.46k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4.46k | { | 357 | 4.46k | T* newBuffer = _allocate(size); | 358 | 4.46k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4.46k | m_buffer = newBuffer; | 376 | 4.46k | m_capacity = size; | 377 | 4.46k | } | 378 | 4.46k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 16 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 16 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 16 | { | 357 | 16 | T* newBuffer = _allocate(size); | 358 | 16 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 16 | m_buffer = newBuffer; | 376 | 16 | m_capacity = size; | 377 | 16 | } | 378 | 16 | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28.7k | { | 357 | 28.7k | T* newBuffer = _allocate(size); | 358 | 28.7k | if (m_capacity) | 359 | 910 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 910 | { | 364 | 11.0M | for (Index i = 0; i < m_count; i++) | 365 | 11.0M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 11.0M | for (Index i = m_count; i < size; i++) | 369 | 11.0M | { | 370 | 11.0M | new (newBuffer + i) T(); | 371 | 11.0M | } | 372 | 910 | } | 373 | 910 | _deallocateBuffer(); | 374 | 910 | } | 375 | 28.7k | m_buffer = newBuffer; | 376 | 28.7k | m_capacity = size; | 377 | 28.7k | } | 378 | 28.7k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 34 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 34 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 34 | { | 357 | 34 | T* newBuffer = _allocate(size); | 358 | 34 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 34 | m_buffer = newBuffer; | 376 | 34 | m_capacity = size; | 377 | 34 | } | 378 | 34 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 69.4k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 69.4k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 69.4k | { | 357 | 69.4k | T* newBuffer = _allocate(size); | 358 | 69.4k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 69.4k | m_buffer = newBuffer; | 376 | 69.4k | m_capacity = size; | 377 | 69.4k | } | 378 | 69.4k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.49k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.49k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.49k | { | 357 | 1.49k | T* newBuffer = _allocate(size); | 358 | 1.49k | if (m_capacity) | 359 | 316 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 316 | { | 364 | 11.9k | for (Index i = 0; i < m_count; i++) | 365 | 11.6k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 11.9k | for (Index i = m_count; i < size; i++) | 369 | 11.6k | { | 370 | 11.6k | new (newBuffer + i) T(); | 371 | 11.6k | } | 372 | 316 | } | 373 | 316 | _deallocateBuffer(); | 374 | 316 | } | 375 | 1.49k | m_buffer = newBuffer; | 376 | 1.49k | m_capacity = size; | 377 | 1.49k | } | 378 | 1.49k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 827k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 827k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 827k | { | 357 | 827k | T* newBuffer = _allocate(size); | 358 | 827k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 827k | m_buffer = newBuffer; | 376 | 827k | m_capacity = size; | 377 | 827k | } | 378 | 827k | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 900 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 900 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 900 | { | 357 | 900 | T* newBuffer = _allocate(size); | 358 | 900 | if (m_capacity) | 359 | 43 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 43 | { | 364 | 1.05k | for (Index i = 0; i < m_count; i++) | 365 | 1.00k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.05k | for (Index i = m_count; i < size; i++) | 369 | 1.00k | { | 370 | 1.00k | new (newBuffer + i) T(); | 371 | 1.00k | } | 372 | 43 | } | 373 | 43 | _deallocateBuffer(); | 374 | 43 | } | 375 | 900 | m_buffer = newBuffer; | 376 | 900 | m_capacity = size; | 377 | 900 | } | 378 | 900 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 168 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 168 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 168 | { | 357 | 168 | T* newBuffer = _allocate(size); | 358 | 168 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 168 | m_buffer = newBuffer; | 376 | 168 | m_capacity = size; | 377 | 168 | } | 378 | 168 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 410 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 410 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 410 | { | 357 | 410 | T* newBuffer = _allocate(size); | 358 | 410 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 410 | m_buffer = newBuffer; | 376 | 410 | m_capacity = size; | 377 | 410 | } | 378 | 410 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 924 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 924 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 924 | { | 357 | 924 | T* newBuffer = _allocate(size); | 358 | 924 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 924 | m_buffer = newBuffer; | 376 | 924 | m_capacity = size; | 377 | 924 | } | 378 | 924 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 678 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 678 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 678 | { | 357 | 678 | T* newBuffer = _allocate(size); | 358 | 678 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 678 | m_buffer = newBuffer; | 376 | 678 | m_capacity = size; | 377 | 678 | } | 378 | 678 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 175 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 175 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 118 | { | 357 | 118 | T* newBuffer = _allocate(size); | 358 | 118 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 118 | m_buffer = newBuffer; | 376 | 118 | m_capacity = size; | 377 | 118 | } | 378 | 175 | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.81k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.81k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.70k | { | 357 | 1.70k | T* newBuffer = _allocate(size); | 358 | 1.70k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.70k | m_buffer = newBuffer; | 376 | 1.70k | m_capacity = size; | 377 | 1.70k | } | 378 | 1.81k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.85k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.85k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.85k | { | 357 | 1.85k | T* newBuffer = _allocate(size); | 358 | 1.85k | if (m_capacity) | 359 | 153 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 153 | { | 364 | 8.93k | for (Index i = 0; i < m_count; i++) | 365 | 8.78k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 8.93k | for (Index i = m_count; i < size; i++) | 369 | 8.78k | { | 370 | 8.78k | new (newBuffer + i) T(); | 371 | 8.78k | } | 372 | 153 | } | 373 | 153 | _deallocateBuffer(); | 374 | 153 | } | 375 | 1.85k | m_buffer = newBuffer; | 376 | 1.85k | m_capacity = size; | 377 | 1.85k | } | 378 | 1.85k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 427 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 427 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 427 | { | 357 | 427 | T* newBuffer = _allocate(size); | 358 | 427 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 427 | m_buffer = newBuffer; | 376 | 427 | m_capacity = size; | 377 | 427 | } | 378 | 427 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 118 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 118 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 118 | { | 357 | 118 | T* newBuffer = _allocate(size); | 358 | 118 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 118 | m_buffer = newBuffer; | 376 | 118 | m_capacity = size; | 377 | 118 | } | 378 | 118 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 458 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 458 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 458 | { | 357 | 458 | T* newBuffer = _allocate(size); | 358 | 458 | if (m_capacity) | 359 | 40 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 40 | { | 364 | 680 | for (Index i = 0; i < m_count; i++) | 365 | 640 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 680 | for (Index i = m_count; i < size; i++) | 369 | 640 | { | 370 | 640 | new (newBuffer + i) T(); | 371 | 640 | } | 372 | 40 | } | 373 | 40 | _deallocateBuffer(); | 374 | 40 | } | 375 | 458 | m_buffer = newBuffer; | 376 | 458 | m_capacity = size; | 377 | 458 | } | 378 | 458 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 49.8k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 49.8k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 49.8k | { | 357 | 49.8k | T* newBuffer = _allocate(size); | 358 | 49.8k | if (m_capacity) | 359 | 3.90k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3.90k | { | 364 | 33.9M | for (Index i = 0; i < m_count; i++) | 365 | 33.9M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 33.9M | for (Index i = m_count; i < size; i++) | 369 | 33.9M | { | 370 | 33.9M | new (newBuffer + i) T(); | 371 | 33.9M | } | 372 | 3.90k | } | 373 | 3.90k | _deallocateBuffer(); | 374 | 3.90k | } | 375 | 49.8k | m_buffer = newBuffer; | 376 | 49.8k | m_capacity = size; | 377 | 49.8k | } | 378 | 49.8k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 53 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 53 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 53 | { | 357 | 53 | T* newBuffer = _allocate(size); | 358 | 53 | if (m_capacity) | 359 | 25 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 25 | { | 364 | 65.5k | for (Index i = 0; i < m_count; i++) | 365 | 65.5k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 65.5k | for (Index i = m_count; i < size; i++) | 369 | 65.5k | { | 370 | 65.5k | new (newBuffer + i) T(); | 371 | 65.5k | } | 372 | 25 | } | 373 | 25 | _deallocateBuffer(); | 374 | 25 | } | 375 | 53 | m_buffer = newBuffer; | 376 | 53 | m_capacity = size; | 377 | 53 | } | 378 | 53 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 11 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 11 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 11 | { | 357 | 11 | T* newBuffer = _allocate(size); | 358 | 11 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 11 | m_buffer = newBuffer; | 376 | 11 | m_capacity = size; | 377 | 11 | } | 378 | 11 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 524 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 524 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 524 | { | 357 | 524 | T* newBuffer = _allocate(size); | 358 | 524 | if (m_capacity) | 359 | 399 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 399 | { | 364 | 36.4k | for (Index i = 0; i < m_count; i++) | 365 | 36.0k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 36.4k | for (Index i = m_count; i < size; i++) | 369 | 36.0k | { | 370 | 36.0k | new (newBuffer + i) T(); | 371 | 36.0k | } | 372 | 399 | } | 373 | 399 | _deallocateBuffer(); | 374 | 399 | } | 375 | 524 | m_buffer = newBuffer; | 376 | 524 | m_capacity = size; | 377 | 524 | } | 378 | 524 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71 | { | 357 | 71 | T* newBuffer = _allocate(size); | 358 | 71 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 71 | m_buffer = newBuffer; | 376 | 71 | m_capacity = size; | 377 | 71 | } | 378 | 71 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 100k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 100k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 38.1k | { | 357 | 38.1k | T* newBuffer = _allocate(size); | 358 | 38.1k | if (m_capacity) | 359 | 559 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 559 | { | 364 | 257k | for (Index i = 0; i < m_count; i++) | 365 | 256k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 258k | for (Index i = m_count; i < size; i++) | 369 | 257k | { | 370 | 257k | new (newBuffer + i) T(); | 371 | 257k | } | 372 | 559 | } | 373 | 559 | _deallocateBuffer(); | 374 | 559 | } | 375 | 38.1k | m_buffer = newBuffer; | 376 | 38.1k | m_capacity = size; | 377 | 38.1k | } | 378 | 100k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 39.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 39.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 39.1k | { | 357 | 39.1k | T* newBuffer = _allocate(size); | 358 | 39.1k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 39.1k | m_buffer = newBuffer; | 376 | 39.1k | m_capacity = size; | 377 | 39.1k | } | 378 | 39.1k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 247 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 247 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 247 | { | 357 | 247 | T* newBuffer = _allocate(size); | 358 | 247 | if (m_capacity) | 359 | 4 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 4 | { | 364 | 100 | for (Index i = 0; i < m_count; i++) | 365 | 96 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 100 | for (Index i = m_count; i < size; i++) | 369 | 96 | { | 370 | 96 | new (newBuffer + i) T(); | 371 | 96 | } | 372 | 4 | } | 373 | 4 | _deallocateBuffer(); | 374 | 4 | } | 375 | 247 | m_buffer = newBuffer; | 376 | 247 | m_capacity = size; | 377 | 247 | } | 378 | 247 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.23k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.23k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.23k | { | 357 | 3.23k | T* newBuffer = _allocate(size); | 358 | 3.23k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.23k | m_buffer = newBuffer; | 376 | 3.23k | m_capacity = size; | 377 | 3.23k | } | 378 | 3.23k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6.99k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6.99k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6.99k | { | 357 | 6.99k | T* newBuffer = _allocate(size); | 358 | 6.99k | if (m_capacity) | 359 | 1.83k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.83k | { | 364 | 170k | for (Index i = 0; i < m_count; i++) | 365 | 168k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 170k | for (Index i = m_count; i < size; i++) | 369 | 168k | { | 370 | 168k | new (newBuffer + i) T(); | 371 | 168k | } | 372 | 1.83k | } | 373 | 1.83k | _deallocateBuffer(); | 374 | 1.83k | } | 375 | 6.99k | m_buffer = newBuffer; | 376 | 6.99k | m_capacity = size; | 377 | 6.99k | } | 378 | 6.99k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 33 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 33 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 33 | { | 357 | 33 | T* newBuffer = _allocate(size); | 358 | 33 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 33 | m_buffer = newBuffer; | 376 | 33 | m_capacity = size; | 377 | 33 | } | 378 | 33 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 145 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 145 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 145 | { | 357 | 145 | T* newBuffer = _allocate(size); | 358 | 145 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 145 | m_buffer = newBuffer; | 376 | 145 | m_capacity = size; | 377 | 145 | } | 378 | 145 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 246 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 246 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 246 | { | 357 | 246 | T* newBuffer = _allocate(size); | 358 | 246 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 246 | m_buffer = newBuffer; | 376 | 246 | m_capacity = size; | 377 | 246 | } | 378 | 246 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 2 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2 | { | 364 | 34 | for (Index i = 0; i < m_count; i++) | 365 | 32 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 34 | for (Index i = m_count; i < size; i++) | 369 | 32 | { | 370 | 32 | new (newBuffer + i) T(); | 371 | 32 | } | 372 | 2 | } | 373 | 2 | _deallocateBuffer(); | 374 | 2 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 30 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 30 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 30 | { | 357 | 30 | T* newBuffer = _allocate(size); | 358 | 30 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 30 | m_buffer = newBuffer; | 376 | 30 | m_capacity = size; | 377 | 30 | } | 378 | 30 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 494k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 494k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 494k | { | 357 | 494k | T* newBuffer = _allocate(size); | 358 | 494k | if (m_capacity) | 359 | 43.7k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 43.7k | { | 364 | 3.34M | for (Index i = 0; i < m_count; i++) | 365 | 3.29M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 3.34M | for (Index i = m_count; i < size; i++) | 369 | 3.29M | { | 370 | 3.29M | new (newBuffer + i) T(); | 371 | 3.29M | } | 372 | 43.7k | } | 373 | 43.7k | _deallocateBuffer(); | 374 | 43.7k | } | 375 | 494k | m_buffer = newBuffer; | 376 | 494k | m_capacity = size; | 377 | 494k | } | 378 | 494k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 237k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 237k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 237k | { | 357 | 237k | T* newBuffer = _allocate(size); | 358 | 237k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 237k | m_buffer = newBuffer; | 376 | 237k | m_capacity = size; | 377 | 237k | } | 378 | 237k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 41 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 41 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 41 | { | 357 | 41 | T* newBuffer = _allocate(size); | 358 | 41 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 41 | m_buffer = newBuffer; | 376 | 41 | m_capacity = size; | 377 | 41 | } | 378 | 41 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 72 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 72 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 72 | { | 357 | 72 | T* newBuffer = _allocate(size); | 358 | 72 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 72 | m_buffer = newBuffer; | 376 | 72 | m_capacity = size; | 377 | 72 | } | 378 | 72 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 64 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 64 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 64 | { | 357 | 64 | T* newBuffer = _allocate(size); | 358 | 64 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 64 | m_buffer = newBuffer; | 376 | 64 | m_capacity = size; | 377 | 64 | } | 378 | 64 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E7reserveEl Line | Count | Source | 351 | 27 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 27 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 27 | { | 357 | 27 | T* newBuffer = _allocate(size); | 358 | 27 | if (m_capacity) | 359 | 2 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2 | { | 364 | 34 | for (Index i = 0; i < m_count; i++) | 365 | 32 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 34 | for (Index i = m_count; i < size; i++) | 369 | 32 | { | 370 | 32 | new (newBuffer + i) T(); | 371 | 32 | } | 372 | 2 | } | 373 | 2 | _deallocateBuffer(); | 374 | 2 | } | 375 | 27 | m_buffer = newBuffer; | 376 | 27 | m_capacity = size; | 377 | 27 | } | 378 | 27 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.93k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.93k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4.93k | { | 357 | 4.93k | T* newBuffer = _allocate(size); | 358 | 4.93k | if (m_capacity) | 359 | 152 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 152 | { | 364 | 41.3k | for (Index i = 0; i < m_count; i++) | 365 | 41.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 41.3k | for (Index i = m_count; i < size; i++) | 369 | 41.2k | { | 370 | 41.2k | new (newBuffer + i) T(); | 371 | 41.2k | } | 372 | 152 | } | 373 | 152 | _deallocateBuffer(); | 374 | 152 | } | 375 | 4.93k | m_buffer = newBuffer; | 376 | 4.93k | m_capacity = size; | 377 | 4.93k | } | 378 | 4.93k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 26 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 26 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 26 | { | 357 | 26 | T* newBuffer = _allocate(size); | 358 | 26 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 26 | m_buffer = newBuffer; | 376 | 26 | m_capacity = size; | 377 | 26 | } | 378 | 26 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 77 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 77 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 77 | { | 357 | 77 | T* newBuffer = _allocate(size); | 358 | 77 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 77 | m_buffer = newBuffer; | 376 | 77 | m_capacity = size; | 377 | 77 | } | 378 | 77 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.10k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.10k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.10k | { | 357 | 1.10k | T* newBuffer = _allocate(size); | 358 | 1.10k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.10k | m_buffer = newBuffer; | 376 | 1.10k | m_capacity = size; | 377 | 1.10k | } | 378 | 1.10k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 60 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 60 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 60 | { | 357 | 60 | T* newBuffer = _allocate(size); | 358 | 60 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 60 | m_buffer = newBuffer; | 376 | 60 | m_capacity = size; | 377 | 60 | } | 378 | 60 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 598 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 598 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 598 | { | 357 | 598 | T* newBuffer = _allocate(size); | 358 | 598 | if (m_capacity) | 359 | 283 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 283 | { | 364 | 5.25k | for (Index i = 0; i < m_count; i++) | 365 | 4.97k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 5.25k | for (Index i = m_count; i < size; i++) | 369 | 4.97k | { | 370 | 4.97k | new (newBuffer + i) T(); | 371 | 4.97k | } | 372 | 283 | } | 373 | 283 | _deallocateBuffer(); | 374 | 283 | } | 375 | 598 | m_buffer = newBuffer; | 376 | 598 | m_capacity = size; | 377 | 598 | } | 378 | 598 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 700 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 700 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 700 | { | 357 | 700 | T* newBuffer = _allocate(size); | 358 | 700 | if (m_capacity) | 359 | 504 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 504 | { | 364 | 275k | for (Index i = 0; i < m_count; i++) | 365 | 275k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 275k | for (Index i = m_count; i < size; i++) | 369 | 275k | { | 370 | 275k | new (newBuffer + i) T(); | 371 | 275k | } | 372 | 504 | } | 373 | 504 | _deallocateBuffer(); | 374 | 504 | } | 375 | 700 | m_buffer = newBuffer; | 376 | 700 | m_capacity = size; | 377 | 700 | } | 378 | 700 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 21.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 21.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 21.7k | { | 357 | 21.7k | T* newBuffer = _allocate(size); | 358 | 21.7k | if (m_capacity) | 359 | 541 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 541 | { | 364 | 45.2k | for (Index i = 0; i < m_count; i++) | 365 | 44.7k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 45.2k | for (Index i = m_count; i < size; i++) | 369 | 44.7k | { | 370 | 44.7k | new (newBuffer + i) T(); | 371 | 44.7k | } | 372 | 541 | } | 373 | 541 | _deallocateBuffer(); | 374 | 541 | } | 375 | 21.7k | m_buffer = newBuffer; | 376 | 21.7k | m_capacity = size; | 377 | 21.7k | } | 378 | 21.7k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 61 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 61 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 61 | { | 357 | 61 | T* newBuffer = _allocate(size); | 358 | 61 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 61 | m_buffer = newBuffer; | 376 | 61 | m_capacity = size; | 377 | 61 | } | 378 | 61 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 57.6k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 57.6k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 57.6k | { | 357 | 57.6k | T* newBuffer = _allocate(size); | 358 | 57.6k | if (m_capacity) | 359 | 14.9k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 14.9k | { | 364 | 1.19M | for (Index i = 0; i < m_count; i++) | 365 | 1.17M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.19M | for (Index i = m_count; i < size; i++) | 369 | 1.17M | { | 370 | 1.17M | new (newBuffer + i) T(); | 371 | 1.17M | } | 372 | 14.9k | } | 373 | 14.9k | _deallocateBuffer(); | 374 | 14.9k | } | 375 | 57.6k | m_buffer = newBuffer; | 376 | 57.6k | m_capacity = size; | 377 | 57.6k | } | 378 | 57.6k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 42.6k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 42.6k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 42.6k | { | 357 | 42.6k | T* newBuffer = _allocate(size); | 358 | 42.6k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 42.6k | m_buffer = newBuffer; | 376 | 42.6k | m_capacity = size; | 377 | 42.6k | } | 378 | 42.6k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 829 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 829 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 829 | { | 357 | 829 | T* newBuffer = _allocate(size); | 358 | 829 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 829 | m_buffer = newBuffer; | 376 | 829 | m_capacity = size; | 377 | 829 | } | 378 | 829 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 34 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 34 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 34 | { | 357 | 34 | T* newBuffer = _allocate(size); | 358 | 34 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 34 | m_buffer = newBuffer; | 376 | 34 | m_capacity = size; | 377 | 34 | } | 378 | 34 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 57 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 57 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 57 | { | 357 | 57 | T* newBuffer = _allocate(size); | 358 | 57 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 57 | m_buffer = newBuffer; | 376 | 57 | m_capacity = size; | 377 | 57 | } | 378 | 57 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 52 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 52 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 52 | { | 357 | 52 | T* newBuffer = _allocate(size); | 358 | 52 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 52 | m_buffer = newBuffer; | 376 | 52 | m_capacity = size; | 377 | 52 | } | 378 | 52 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 100 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 100 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 100 | { | 357 | 100 | T* newBuffer = _allocate(size); | 358 | 100 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 100 | m_buffer = newBuffer; | 376 | 100 | m_capacity = size; | 377 | 100 | } | 378 | 100 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 27.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 27.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 27.7k | { | 357 | 27.7k | T* newBuffer = _allocate(size); | 358 | 27.7k | if (m_capacity) | 359 | 2.58k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2.58k | { | 364 | 197k | for (Index i = 0; i < m_count; i++) | 365 | 195k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 197k | for (Index i = m_count; i < size; i++) | 369 | 195k | { | 370 | 195k | new (newBuffer + i) T(); | 371 | 195k | } | 372 | 2.58k | } | 373 | 2.58k | _deallocateBuffer(); | 374 | 2.58k | } | 375 | 27.7k | m_buffer = newBuffer; | 376 | 27.7k | m_capacity = size; | 377 | 27.7k | } | 378 | 27.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7 | { | 357 | 7 | T* newBuffer = _allocate(size); | 358 | 7 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7 | m_buffer = newBuffer; | 376 | 7 | m_capacity = size; | 377 | 7 | } | 378 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7 | { | 357 | 7 | T* newBuffer = _allocate(size); | 358 | 7 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7 | m_buffer = newBuffer; | 376 | 7 | m_capacity = size; | 377 | 7 | } | 378 | 7 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 11 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 11 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 11 | { | 357 | 11 | T* newBuffer = _allocate(size); | 358 | 11 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 11 | m_buffer = newBuffer; | 376 | 11 | m_capacity = size; | 377 | 11 | } | 378 | 11 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 17 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 17 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 17 | { | 357 | 17 | T* newBuffer = _allocate(size); | 358 | 17 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 17 | m_buffer = newBuffer; | 376 | 17 | m_capacity = size; | 377 | 17 | } | 378 | 17 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 12 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 12 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 12 | { | 357 | 12 | T* newBuffer = _allocate(size); | 358 | 12 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 12 | m_buffer = newBuffer; | 376 | 12 | m_capacity = size; | 377 | 12 | } | 378 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 285 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 285 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 285 | { | 357 | 285 | T* newBuffer = _allocate(size); | 358 | 285 | if (m_capacity) | 359 | 44 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 44 | { | 364 | 828 | for (Index i = 0; i < m_count; i++) | 365 | 784 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 828 | for (Index i = m_count; i < size; i++) | 369 | 784 | { | 370 | 784 | new (newBuffer + i) T(); | 371 | 784 | } | 372 | 44 | } | 373 | 44 | _deallocateBuffer(); | 374 | 44 | } | 375 | 285 | m_buffer = newBuffer; | 376 | 285 | m_capacity = size; | 377 | 285 | } | 378 | 285 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.17k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.17k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.17k | { | 357 | 1.17k | T* newBuffer = _allocate(size); | 358 | 1.17k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.17k | m_buffer = newBuffer; | 376 | 1.17k | m_capacity = size; | 377 | 1.17k | } | 378 | 1.17k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 53 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 53 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 53 | { | 357 | 53 | T* newBuffer = _allocate(size); | 358 | 53 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 53 | m_buffer = newBuffer; | 376 | 53 | m_capacity = size; | 377 | 53 | } | 378 | 53 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.33k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.33k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.33k | { | 357 | 1.33k | T* newBuffer = _allocate(size); | 358 | 1.33k | if (m_capacity) | 359 | 4 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 4 | { | 364 | 68 | for (Index i = 0; i < m_count; i++) | 365 | 64 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 68 | for (Index i = m_count; i < size; i++) | 369 | 64 | { | 370 | 64 | new (newBuffer + i) T(); | 371 | 64 | } | 372 | 4 | } | 373 | 4 | _deallocateBuffer(); | 374 | 4 | } | 375 | 1.33k | m_buffer = newBuffer; | 376 | 1.33k | m_capacity = size; | 377 | 1.33k | } | 378 | 1.33k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 189 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 189 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 189 | { | 357 | 189 | T* newBuffer = _allocate(size); | 358 | 189 | if (m_capacity) | 359 | 4 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 4 | { | 364 | 100 | for (Index i = 0; i < m_count; i++) | 365 | 96 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 100 | for (Index i = m_count; i < size; i++) | 369 | 96 | { | 370 | 96 | new (newBuffer + i) T(); | 371 | 96 | } | 372 | 4 | } | 373 | 4 | _deallocateBuffer(); | 374 | 4 | } | 375 | 189 | m_buffer = newBuffer; | 376 | 189 | m_capacity = size; | 377 | 189 | } | 378 | 189 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 417 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 417 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 417 | { | 357 | 417 | T* newBuffer = _allocate(size); | 358 | 417 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 417 | m_buffer = newBuffer; | 376 | 417 | m_capacity = size; | 377 | 417 | } | 378 | 417 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 243 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 243 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 243 | { | 357 | 243 | T* newBuffer = _allocate(size); | 358 | 243 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 67 | for (Index i = 0; i < m_count; i++) | 365 | 64 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 67 | for (Index i = m_count; i < size; i++) | 369 | 64 | { | 370 | 64 | new (newBuffer + i) T(); | 371 | 64 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 243 | m_buffer = newBuffer; | 376 | 243 | m_capacity = size; | 377 | 243 | } | 378 | 243 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 12 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 12 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 12 | { | 357 | 12 | T* newBuffer = _allocate(size); | 358 | 12 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 12 | m_buffer = newBuffer; | 376 | 12 | m_capacity = size; | 377 | 12 | } | 378 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 735 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 735 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 735 | { | 357 | 735 | T* newBuffer = _allocate(size); | 358 | 735 | if (m_capacity) | 359 | 430 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 430 | { | 364 | 16.8k | for (Index i = 0; i < m_count; i++) | 365 | 16.4k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 16.8k | for (Index i = m_count; i < size; i++) | 369 | 16.4k | { | 370 | 16.4k | new (newBuffer + i) T(); | 371 | 16.4k | } | 372 | 430 | } | 373 | 430 | _deallocateBuffer(); | 374 | 430 | } | 375 | 735 | m_buffer = newBuffer; | 376 | 735 | m_capacity = size; | 377 | 735 | } | 378 | 735 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 80 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 80 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 80 | { | 357 | 80 | T* newBuffer = _allocate(size); | 358 | 80 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 80 | m_buffer = newBuffer; | 376 | 80 | m_capacity = size; | 377 | 80 | } | 378 | 80 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 18 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 18 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 18 | { | 357 | 18 | T* newBuffer = _allocate(size); | 358 | 18 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 18 | m_buffer = newBuffer; | 376 | 18 | m_capacity = size; | 377 | 18 | } | 378 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.69k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.69k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.69k | { | 357 | 3.69k | T* newBuffer = _allocate(size); | 358 | 3.69k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.69k | m_buffer = newBuffer; | 376 | 3.69k | m_capacity = size; | 377 | 3.69k | } | 378 | 3.69k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 124k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 124k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 124k | { | 357 | 124k | T* newBuffer = _allocate(size); | 358 | 124k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 124k | m_buffer = newBuffer; | 376 | 124k | m_capacity = size; | 377 | 124k | } | 378 | 124k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 124k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 124k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 124k | { | 357 | 124k | T* newBuffer = _allocate(size); | 358 | 124k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 124k | m_buffer = newBuffer; | 376 | 124k | m_capacity = size; | 377 | 124k | } | 378 | 124k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10.9k | { | 357 | 10.9k | T* newBuffer = _allocate(size); | 358 | 10.9k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 10.9k | m_buffer = newBuffer; | 376 | 10.9k | m_capacity = size; | 377 | 10.9k | } | 378 | 10.9k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.61k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.61k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.61k | { | 357 | 3.61k | T* newBuffer = _allocate(size); | 358 | 3.61k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.61k | m_buffer = newBuffer; | 376 | 3.61k | m_capacity = size; | 377 | 3.61k | } | 378 | 3.61k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 105 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 105 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 105 | { | 357 | 105 | T* newBuffer = _allocate(size); | 358 | 105 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 105 | m_buffer = newBuffer; | 376 | 105 | m_capacity = size; | 377 | 105 | } | 378 | 105 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.86k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.86k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.86k | { | 357 | 1.86k | T* newBuffer = _allocate(size); | 358 | 1.86k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.86k | m_buffer = newBuffer; | 376 | 1.86k | m_capacity = size; | 377 | 1.86k | } | 378 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 15 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 15 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 15 | { | 357 | 15 | T* newBuffer = _allocate(size); | 358 | 15 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 15 | m_buffer = newBuffer; | 376 | 15 | m_capacity = size; | 377 | 15 | } | 378 | 15 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 132 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 132 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 132 | { | 357 | 132 | T* newBuffer = _allocate(size); | 358 | 132 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 132 | m_buffer = newBuffer; | 376 | 132 | m_capacity = size; | 377 | 132 | } | 378 | 132 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 738 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 738 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 738 | { | 357 | 738 | T* newBuffer = _allocate(size); | 358 | 738 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 738 | m_buffer = newBuffer; | 376 | 738 | m_capacity = size; | 377 | 738 | } | 378 | 738 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 815 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 815 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 815 | { | 357 | 815 | T* newBuffer = _allocate(size); | 358 | 815 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 815 | m_buffer = newBuffer; | 376 | 815 | m_capacity = size; | 377 | 815 | } | 378 | 815 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 174 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 174 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 174 | { | 357 | 174 | T* newBuffer = _allocate(size); | 358 | 174 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 174 | m_buffer = newBuffer; | 376 | 174 | m_capacity = size; | 377 | 174 | } | 378 | 174 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.36k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.36k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.36k | { | 357 | 2.36k | T* newBuffer = _allocate(size); | 358 | 2.36k | if (m_capacity) | 359 | 88 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 88 | { | 364 | 1.49k | for (Index i = 0; i < m_count; i++) | 365 | 1.40k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.49k | for (Index i = m_count; i < size; i++) | 369 | 1.40k | { | 370 | 1.40k | new (newBuffer + i) T(); | 371 | 1.40k | } | 372 | 88 | } | 373 | 88 | _deallocateBuffer(); | 374 | 88 | } | 375 | 2.36k | m_buffer = newBuffer; | 376 | 2.36k | m_capacity = size; | 377 | 2.36k | } | 378 | 2.36k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 18.3k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 18.3k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 18.3k | { | 357 | 18.3k | T* newBuffer = _allocate(size); | 358 | 18.3k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 18.3k | m_buffer = newBuffer; | 376 | 18.3k | m_capacity = size; | 377 | 18.3k | } | 378 | 18.3k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE7reserveEl slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 197k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 197k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 197k | { | 357 | 197k | T* newBuffer = _allocate(size); | 358 | 197k | if (m_capacity) | 359 | 4 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 4 | { | 364 | 68 | for (Index i = 0; i < m_count; i++) | 365 | 64 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 68 | for (Index i = m_count; i < size; i++) | 369 | 64 | { | 370 | 64 | new (newBuffer + i) T(); | 371 | 64 | } | 372 | 4 | } | 373 | 4 | _deallocateBuffer(); | 374 | 4 | } | 375 | 197k | m_buffer = newBuffer; | 376 | 197k | m_capacity = size; | 377 | 197k | } | 378 | 197k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 54 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 54 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 54 | { | 357 | 54 | T* newBuffer = _allocate(size); | 358 | 54 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 54 | m_buffer = newBuffer; | 376 | 54 | m_capacity = size; | 377 | 54 | } | 378 | 54 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71 | { | 357 | 71 | T* newBuffer = _allocate(size); | 358 | 71 | if (m_capacity) | 359 | 52 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 52 | { | 364 | 14.3k | for (Index i = 0; i < m_count; i++) | 365 | 14.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 14.3k | for (Index i = m_count; i < size; i++) | 369 | 14.2k | { | 370 | 14.2k | new (newBuffer + i) T(); | 371 | 14.2k | } | 372 | 52 | } | 373 | 52 | _deallocateBuffer(); | 374 | 52 | } | 375 | 71 | m_buffer = newBuffer; | 376 | 71 | m_capacity = size; | 377 | 71 | } | 378 | 71 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 8 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 8 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8 | { | 357 | 8 | T* newBuffer = _allocate(size); | 358 | 8 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 8 | m_buffer = newBuffer; | 376 | 8 | m_capacity = size; | 377 | 8 | } | 378 | 8 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 899 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 899 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 899 | { | 357 | 899 | T* newBuffer = _allocate(size); | 358 | 899 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 899 | m_buffer = newBuffer; | 376 | 899 | m_capacity = size; | 377 | 899 | } | 378 | 899 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 899 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 899 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 899 | { | 357 | 899 | T* newBuffer = _allocate(size); | 358 | 899 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 899 | m_buffer = newBuffer; | 376 | 899 | m_capacity = size; | 377 | 899 | } | 378 | 899 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 570 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 570 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 570 | { | 357 | 570 | T* newBuffer = _allocate(size); | 358 | 570 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 570 | m_buffer = newBuffer; | 376 | 570 | m_capacity = size; | 377 | 570 | } | 378 | 570 | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 372 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 372 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 372 | { | 357 | 372 | T* newBuffer = _allocate(size); | 358 | 372 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 372 | m_buffer = newBuffer; | 376 | 372 | m_capacity = size; | 377 | 372 | } | 378 | 372 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.06k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.06k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.06k | { | 357 | 3.06k | T* newBuffer = _allocate(size); | 358 | 3.06k | if (m_capacity) | 359 | 153 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 153 | { | 364 | 8.93k | for (Index i = 0; i < m_count; i++) | 365 | 8.78k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 8.93k | for (Index i = m_count; i < size; i++) | 369 | 8.78k | { | 370 | 8.78k | new (newBuffer + i) T(); | 371 | 8.78k | } | 372 | 153 | } | 373 | 153 | _deallocateBuffer(); | 374 | 153 | } | 375 | 3.06k | m_buffer = newBuffer; | 376 | 3.06k | m_capacity = size; | 377 | 3.06k | } | 378 | 3.06k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 227 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 227 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 227 | { | 357 | 227 | T* newBuffer = _allocate(size); | 358 | 227 | if (m_capacity) | 359 | 5 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 5 | { | 364 | 101 | for (Index i = 0; i < m_count; i++) | 365 | 96 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 101 | for (Index i = m_count; i < size; i++) | 369 | 96 | { | 370 | 96 | new (newBuffer + i) T(); | 371 | 96 | } | 372 | 5 | } | 373 | 5 | _deallocateBuffer(); | 374 | 5 | } | 375 | 227 | m_buffer = newBuffer; | 376 | 227 | m_capacity = size; | 377 | 227 | } | 378 | 227 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 27.2k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 27.2k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 27.2k | { | 357 | 27.2k | T* newBuffer = _allocate(size); | 358 | 27.2k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 27.2k | m_buffer = newBuffer; | 376 | 27.2k | m_capacity = size; | 377 | 27.2k | } | 378 | 27.2k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 277 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 277 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 277 | { | 357 | 277 | T* newBuffer = _allocate(size); | 358 | 277 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 277 | m_buffer = newBuffer; | 376 | 277 | m_capacity = size; | 377 | 277 | } | 378 | 277 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 72 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 72 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 72 | { | 357 | 72 | T* newBuffer = _allocate(size); | 358 | 72 | if (m_capacity) | 359 | 36 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 36 | { | 364 | 612 | for (Index i = 0; i < m_count; i++) | 365 | 576 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 612 | for (Index i = m_count; i < size; i++) | 369 | 576 | { | 370 | 576 | new (newBuffer + i) T(); | 371 | 576 | } | 372 | 36 | } | 373 | 36 | _deallocateBuffer(); | 374 | 36 | } | 375 | 72 | m_buffer = newBuffer; | 376 | 72 | m_capacity = size; | 377 | 72 | } | 378 | 72 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 208 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 208 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 208 | { | 357 | 208 | T* newBuffer = _allocate(size); | 358 | 208 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 208 | m_buffer = newBuffer; | 376 | 208 | m_capacity = size; | 377 | 208 | } | 378 | 208 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 110 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 110 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 110 | { | 357 | 110 | T* newBuffer = _allocate(size); | 358 | 110 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 110 | m_buffer = newBuffer; | 376 | 110 | m_capacity = size; | 377 | 110 | } | 378 | 110 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 172 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 172 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 172 | { | 357 | 172 | T* newBuffer = _allocate(size); | 358 | 172 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 172 | m_buffer = newBuffer; | 376 | 172 | m_capacity = size; | 377 | 172 | } | 378 | 172 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 117 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 117 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 117 | { | 357 | 117 | T* newBuffer = _allocate(size); | 358 | 117 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 117 | m_buffer = newBuffer; | 376 | 117 | m_capacity = size; | 377 | 117 | } | 378 | 117 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 510 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 510 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 510 | { | 357 | 510 | T* newBuffer = _allocate(size); | 358 | 510 | if (m_capacity) | 359 | 19 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 19 | { | 364 | 323 | for (Index i = 0; i < m_count; i++) | 365 | 304 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 323 | for (Index i = m_count; i < size; i++) | 369 | 304 | { | 370 | 304 | new (newBuffer + i) T(); | 371 | 304 | } | 372 | 19 | } | 373 | 19 | _deallocateBuffer(); | 374 | 19 | } | 375 | 510 | m_buffer = newBuffer; | 376 | 510 | m_capacity = size; | 377 | 510 | } | 378 | 510 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 362 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 362 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 362 | { | 357 | 362 | T* newBuffer = _allocate(size); | 358 | 362 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 362 | m_buffer = newBuffer; | 376 | 362 | m_capacity = size; | 377 | 362 | } | 378 | 362 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 810 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 810 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 810 | { | 357 | 810 | T* newBuffer = _allocate(size); | 358 | 810 | if (m_capacity) | 359 | 18 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 18 | { | 364 | 434 | for (Index i = 0; i < m_count; i++) | 365 | 416 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 434 | for (Index i = m_count; i < size; i++) | 369 | 416 | { | 370 | 416 | new (newBuffer + i) T(); | 371 | 416 | } | 372 | 18 | } | 373 | 18 | _deallocateBuffer(); | 374 | 18 | } | 375 | 810 | m_buffer = newBuffer; | 376 | 810 | m_capacity = size; | 377 | 810 | } | 378 | 810 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 637 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 637 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 637 | { | 357 | 637 | T* newBuffer = _allocate(size); | 358 | 637 | if (m_capacity) | 359 | 18 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 18 | { | 364 | 434 | for (Index i = 0; i < m_count; i++) | 365 | 416 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 434 | for (Index i = m_count; i < size; i++) | 369 | 416 | { | 370 | 416 | new (newBuffer + i) T(); | 371 | 416 | } | 372 | 18 | } | 373 | 18 | _deallocateBuffer(); | 374 | 18 | } | 375 | 637 | m_buffer = newBuffer; | 376 | 637 | m_capacity = size; | 377 | 637 | } | 378 | 637 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 330 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 330 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 330 | { | 357 | 330 | T* newBuffer = _allocate(size); | 358 | 330 | if (m_capacity) | 359 | 18 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 18 | { | 364 | 434 | for (Index i = 0; i < m_count; i++) | 365 | 416 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 434 | for (Index i = m_count; i < size; i++) | 369 | 416 | { | 370 | 416 | new (newBuffer + i) T(); | 371 | 416 | } | 372 | 18 | } | 373 | 18 | _deallocateBuffer(); | 374 | 18 | } | 375 | 330 | m_buffer = newBuffer; | 376 | 330 | m_capacity = size; | 377 | 330 | } | 378 | 330 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 50 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 50 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 50 | { | 357 | 50 | T* newBuffer = _allocate(size); | 358 | 50 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 50 | m_buffer = newBuffer; | 376 | 50 | m_capacity = size; | 377 | 50 | } | 378 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.80k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.80k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.80k | { | 357 | 2.80k | T* newBuffer = _allocate(size); | 358 | 2.80k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.80k | m_buffer = newBuffer; | 376 | 2.80k | m_capacity = size; | 377 | 2.80k | } | 378 | 2.80k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 50 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 50 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 50 | { | 357 | 50 | T* newBuffer = _allocate(size); | 358 | 50 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 50 | m_buffer = newBuffer; | 376 | 50 | m_capacity = size; | 377 | 50 | } | 378 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 50 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 50 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 50 | { | 357 | 50 | T* newBuffer = _allocate(size); | 358 | 50 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 50 | m_buffer = newBuffer; | 376 | 50 | m_capacity = size; | 377 | 50 | } | 378 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 56 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 56 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 56 | { | 357 | 56 | T* newBuffer = _allocate(size); | 358 | 56 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 56 | m_buffer = newBuffer; | 376 | 56 | m_capacity = size; | 377 | 56 | } | 378 | 56 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 52 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 52 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 52 | { | 357 | 52 | T* newBuffer = _allocate(size); | 358 | 52 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 52 | m_buffer = newBuffer; | 376 | 52 | m_capacity = size; | 377 | 52 | } | 378 | 52 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7 | { | 357 | 7 | T* newBuffer = _allocate(size); | 358 | 7 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7 | m_buffer = newBuffer; | 376 | 7 | m_capacity = size; | 377 | 7 | } | 378 | 7 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 146k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 146k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 146k | { | 357 | 146k | T* newBuffer = _allocate(size); | 358 | 146k | if (m_capacity) | 359 | 101k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 101k | { | 364 | 3.67M | for (Index i = 0; i < m_count; i++) | 365 | 3.57M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 3.67M | for (Index i = m_count; i < size; i++) | 369 | 3.57M | { | 370 | 3.57M | new (newBuffer + i) T(); | 371 | 3.57M | } | 372 | 101k | } | 373 | 101k | _deallocateBuffer(); | 374 | 101k | } | 375 | 146k | m_buffer = newBuffer; | 376 | 146k | m_capacity = size; | 377 | 146k | } | 378 | 146k | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 115 | for (Index i = 0; i < m_count; i++) | 365 | 112 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 115 | for (Index i = m_count; i < size; i++) | 369 | 112 | { | 370 | 112 | new (newBuffer + i) T(); | 371 | 112 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 115 | for (Index i = 0; i < m_count; i++) | 365 | 112 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 115 | for (Index i = m_count; i < size; i++) | 369 | 112 | { | 370 | 112 | new (newBuffer + i) T(); | 371 | 112 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7 | { | 357 | 7 | T* newBuffer = _allocate(size); | 358 | 7 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7 | m_buffer = newBuffer; | 376 | 7 | m_capacity = size; | 377 | 7 | } | 378 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 241 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 241 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 241 | { | 357 | 241 | T* newBuffer = _allocate(size); | 358 | 241 | if (m_capacity) | 359 | 180 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 180 | { | 364 | 18.0k | for (Index i = 0; i < m_count; i++) | 365 | 17.8k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 18.0k | for (Index i = m_count; i < size; i++) | 369 | 17.8k | { | 370 | 17.8k | new (newBuffer + i) T(); | 371 | 17.8k | } | 372 | 180 | } | 373 | 180 | _deallocateBuffer(); | 374 | 180 | } | 375 | 241 | m_buffer = newBuffer; | 376 | 241 | m_capacity = size; | 377 | 241 | } | 378 | 241 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 878 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 878 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 878 | { | 357 | 878 | T* newBuffer = _allocate(size); | 358 | 878 | if (m_capacity) | 359 | 813 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 813 | { | 364 | 11.0M | for (Index i = 0; i < m_count; i++) | 365 | 11.0M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 11.0M | for (Index i = m_count; i < size; i++) | 369 | 11.0M | { | 370 | 11.0M | new (newBuffer + i) T(); | 371 | 11.0M | } | 372 | 813 | } | 373 | 813 | _deallocateBuffer(); | 374 | 813 | } | 375 | 878 | m_buffer = newBuffer; | 376 | 878 | m_capacity = size; | 377 | 878 | } | 378 | 878 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6.98k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6.98k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 147 | { | 357 | 147 | T* newBuffer = _allocate(size); | 358 | 147 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 147 | m_buffer = newBuffer; | 376 | 147 | m_capacity = size; | 377 | 147 | } | 378 | 6.98k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 61 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 61 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 61 | { | 357 | 61 | T* newBuffer = _allocate(size); | 358 | 61 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 61 | m_buffer = newBuffer; | 376 | 61 | m_capacity = size; | 377 | 61 | } | 378 | 61 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 61 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 61 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 61 | { | 357 | 61 | T* newBuffer = _allocate(size); | 358 | 61 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 61 | m_buffer = newBuffer; | 376 | 61 | m_capacity = size; | 377 | 61 | } | 378 | 61 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 122 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 122 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 61 | { | 357 | 61 | T* newBuffer = _allocate(size); | 358 | 61 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 61 | m_buffer = newBuffer; | 376 | 61 | m_capacity = size; | 377 | 61 | } | 378 | 122 | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 86 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 86 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 86 | { | 357 | 86 | T* newBuffer = _allocate(size); | 358 | 86 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 86 | m_buffer = newBuffer; | 376 | 86 | m_capacity = size; | 377 | 86 | } | 378 | 86 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.12k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.12k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.33k | { | 357 | 1.33k | T* newBuffer = _allocate(size); | 358 | 1.33k | if (m_capacity) | 359 | 219 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 219 | { | 364 | 12.5k | for (Index i = 0; i < m_count; i++) | 365 | 12.3k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 5.85k | for (Index i = m_count; i < size; i++) | 369 | 5.63k | { | 370 | 5.63k | new (newBuffer + i) T(); | 371 | 5.63k | } | 372 | 219 | } | 373 | 219 | _deallocateBuffer(); | 374 | 219 | } | 375 | 1.33k | m_buffer = newBuffer; | 376 | 1.33k | m_capacity = size; | 377 | 1.33k | } | 378 | 4.12k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 67 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 67 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 67 | { | 357 | 67 | T* newBuffer = _allocate(size); | 358 | 67 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 67 | m_buffer = newBuffer; | 376 | 67 | m_capacity = size; | 377 | 67 | } | 378 | 67 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 70 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 70 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 70 | { | 357 | 70 | T* newBuffer = _allocate(size); | 358 | 70 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 70 | m_buffer = newBuffer; | 376 | 70 | m_capacity = size; | 377 | 70 | } | 378 | 70 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 377 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 377 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 377 | { | 357 | 377 | T* newBuffer = _allocate(size); | 358 | 377 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 377 | m_buffer = newBuffer; | 376 | 377 | m_capacity = size; | 377 | 377 | } | 378 | 377 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 412 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 412 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 412 | { | 357 | 412 | T* newBuffer = _allocate(size); | 358 | 412 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 412 | m_buffer = newBuffer; | 376 | 412 | m_capacity = size; | 377 | 412 | } | 378 | 412 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E7reserveEl Line | Count | Source | 351 | 130 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 130 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 130 | { | 357 | 130 | T* newBuffer = _allocate(size); | 358 | 130 | if (m_capacity) | 359 | 34 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 34 | { | 364 | 994 | for (Index i = 0; i < m_count; i++) | 365 | 960 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 994 | for (Index i = m_count; i < size; i++) | 369 | 960 | { | 370 | 960 | new (newBuffer + i) T(); | 371 | 960 | } | 372 | 34 | } | 373 | 34 | _deallocateBuffer(); | 374 | 34 | } | 375 | 130 | m_buffer = newBuffer; | 376 | 130 | m_capacity = size; | 377 | 130 | } | 378 | 130 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 417 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 417 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 417 | { | 357 | 417 | T* newBuffer = _allocate(size); | 358 | 417 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 417 | m_buffer = newBuffer; | 376 | 417 | m_capacity = size; | 377 | 417 | } | 378 | 417 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 252 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 252 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 252 | { | 357 | 252 | T* newBuffer = _allocate(size); | 358 | 252 | if (m_capacity) | 359 | 216 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 216 | { | 364 | 36.5k | for (Index i = 0; i < m_count; i++) | 365 | 36.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 36.5k | for (Index i = m_count; i < size; i++) | 369 | 36.2k | { | 370 | 36.2k | new (newBuffer + i) T(); | 371 | 36.2k | } | 372 | 216 | } | 373 | 216 | _deallocateBuffer(); | 374 | 216 | } | 375 | 252 | m_buffer = newBuffer; | 376 | 252 | m_capacity = size; | 377 | 252 | } | 378 | 252 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 72 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 72 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 72 | { | 357 | 72 | T* newBuffer = _allocate(size); | 358 | 72 | if (m_capacity) | 359 | 36 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 36 | { | 364 | 612 | for (Index i = 0; i < m_count; i++) | 365 | 576 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 612 | for (Index i = m_count; i < size; i++) | 369 | 576 | { | 370 | 576 | new (newBuffer + i) T(); | 371 | 576 | } | 372 | 36 | } | 373 | 36 | _deallocateBuffer(); | 374 | 36 | } | 375 | 72 | m_buffer = newBuffer; | 376 | 72 | m_capacity = size; | 377 | 72 | } | 378 | 72 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 65 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 65 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 65 | { | 357 | 65 | T* newBuffer = _allocate(size); | 358 | 65 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 65 | m_buffer = newBuffer; | 376 | 65 | m_capacity = size; | 377 | 65 | } | 378 | 65 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.18k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.18k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.18k | { | 357 | 1.18k | T* newBuffer = _allocate(size); | 358 | 1.18k | if (m_capacity) | 359 | 564 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 564 | { | 364 | 9.81k | for (Index i = 0; i < m_count; i++) | 365 | 9.24k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 9.81k | for (Index i = m_count; i < size; i++) | 369 | 9.24k | { | 370 | 9.24k | new (newBuffer + i) T(); | 371 | 9.24k | } | 372 | 564 | } | 373 | 564 | _deallocateBuffer(); | 374 | 564 | } | 375 | 1.18k | m_buffer = newBuffer; | 376 | 1.18k | m_capacity = size; | 377 | 1.18k | } | 378 | 1.18k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 278 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 278 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 278 | { | 357 | 278 | T* newBuffer = _allocate(size); | 358 | 278 | if (m_capacity) | 359 | 40 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 40 | { | 364 | 808 | for (Index i = 0; i < m_count; i++) | 365 | 768 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 808 | for (Index i = m_count; i < size; i++) | 369 | 768 | { | 370 | 768 | new (newBuffer + i) T(); | 371 | 768 | } | 372 | 40 | } | 373 | 40 | _deallocateBuffer(); | 374 | 40 | } | 375 | 278 | m_buffer = newBuffer; | 376 | 278 | m_capacity = size; | 377 | 278 | } | 378 | 278 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.26k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.26k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.26k | { | 357 | 2.26k | T* newBuffer = _allocate(size); | 358 | 2.26k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.26k | m_buffer = newBuffer; | 376 | 2.26k | m_capacity = size; | 377 | 2.26k | } | 378 | 2.26k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.46k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.46k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.46k | { | 357 | 1.46k | T* newBuffer = _allocate(size); | 358 | 1.46k | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 1.46k | m_buffer = newBuffer; | 376 | 1.46k | m_capacity = size; | 377 | 1.46k | } | 378 | 1.46k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 7 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 7 | { | 364 | 1.03k | for (Index i = 0; i < m_count; i++) | 365 | 1.02k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.03k | for (Index i = m_count; i < size; i++) | 369 | 1.02k | { | 370 | 1.02k | new (newBuffer + i) T(); | 371 | 1.02k | } | 372 | 7 | } | 373 | 7 | _deallocateBuffer(); | 374 | 7 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 27 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 27 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 26 | { | 357 | 26 | T* newBuffer = _allocate(size); | 358 | 26 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 26 | m_buffer = newBuffer; | 376 | 26 | m_capacity = size; | 377 | 26 | } | 378 | 27 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 21 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 21 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 21 | { | 357 | 21 | T* newBuffer = _allocate(size); | 358 | 21 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 21 | m_buffer = newBuffer; | 376 | 21 | m_capacity = size; | 377 | 21 | } | 378 | 21 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 25 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 25 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 25 | { | 357 | 25 | T* newBuffer = _allocate(size); | 358 | 25 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 25 | m_buffer = newBuffer; | 376 | 25 | m_capacity = size; | 377 | 25 | } | 378 | 25 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 166 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 166 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 166 | { | 357 | 166 | T* newBuffer = _allocate(size); | 358 | 166 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 166 | m_buffer = newBuffer; | 376 | 166 | m_capacity = size; | 377 | 166 | } | 378 | 166 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 37.8k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 37.8k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 17.9k | { | 357 | 17.9k | T* newBuffer = _allocate(size); | 358 | 17.9k | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 17.9k | m_buffer = newBuffer; | 376 | 17.9k | m_capacity = size; | 377 | 17.9k | } | 378 | 37.8k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9.61k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9.61k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8.11k | { | 357 | 8.11k | T* newBuffer = _allocate(size); | 358 | 8.11k | if (m_capacity) | 359 | 71 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 71 | { | 364 | 14.8k | for (Index i = 0; i < m_count; i++) | 365 | 14.8k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 14.8k | for (Index i = m_count; i < size; i++) | 369 | 14.8k | { | 370 | 14.8k | new (newBuffer + i) T(); | 371 | 14.8k | } | 372 | 71 | } | 373 | 71 | _deallocateBuffer(); | 374 | 71 | } | 375 | 8.11k | m_buffer = newBuffer; | 376 | 8.11k | m_capacity = size; | 377 | 8.11k | } | 378 | 9.61k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.86k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.86k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.86k | { | 357 | 2.86k | T* newBuffer = _allocate(size); | 358 | 2.86k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.86k | m_buffer = newBuffer; | 376 | 2.86k | m_capacity = size; | 377 | 2.86k | } | 378 | 2.86k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 294 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 294 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 294 | { | 357 | 294 | T* newBuffer = _allocate(size); | 358 | 294 | if (m_capacity) | 359 | 205 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 205 | { | 364 | 63.6k | for (Index i = 0; i < m_count; i++) | 365 | 63.4k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 63.6k | for (Index i = m_count; i < size; i++) | 369 | 63.4k | { | 370 | 63.4k | new (newBuffer + i) T(); | 371 | 63.4k | } | 372 | 205 | } | 373 | 205 | _deallocateBuffer(); | 374 | 205 | } | 375 | 294 | m_buffer = newBuffer; | 376 | 294 | m_capacity = size; | 377 | 294 | } | 378 | 294 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.03k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.03k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.03k | { | 357 | 3.03k | T* newBuffer = _allocate(size); | 358 | 3.03k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.03k | m_buffer = newBuffer; | 376 | 3.03k | m_capacity = size; | 377 | 3.03k | } | 378 | 3.03k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.00k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.00k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.00k | { | 357 | 3.00k | T* newBuffer = _allocate(size); | 358 | 3.00k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.00k | m_buffer = newBuffer; | 376 | 3.00k | m_capacity = size; | 377 | 3.00k | } | 378 | 3.00k | } |
|
379 | | |
380 | | void growToCount(Index count) |
381 | 0 | { |
382 | 0 | Index newBufferCount = Index(1) << Math::Log2Ceil((unsigned int)count); |
383 | 0 | if (m_capacity < newBufferCount) |
384 | 0 | { |
385 | 0 | reserve(newBufferCount); |
386 | 0 | } |
387 | 0 | m_count = count; |
388 | 0 | } Unexecuted instantiation: _ZN5Slang4ListIcNS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE11growToCountEl |
389 | | |
390 | | void setCount(Index count) |
391 | 8.85M | { |
392 | 8.85M | reserve(count); |
393 | 8.85M | m_count = count; |
394 | 8.85M | } _ZN5Slang4ListImNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 5.62M | { | 392 | 5.62M | reserve(count); | 393 | 5.62M | m_count = count; | 394 | 5.62M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 2.94M | { | 392 | 2.94M | reserve(count); | 393 | 2.94M | m_count = count; | 394 | 2.94M | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E8setCountEl Line | Count | Source | 391 | 1.04k | { | 392 | 1.04k | reserve(count); | 393 | 1.04k | m_count = count; | 394 | 1.04k | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 1.04k | { | 392 | 1.04k | reserve(count); | 393 | 1.04k | m_count = count; | 394 | 1.04k | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 1.04k | { | 392 | 1.04k | reserve(count); | 393 | 1.04k | m_count = count; | 394 | 1.04k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 29.9k | { | 392 | 29.9k | reserve(count); | 393 | 29.9k | m_count = count; | 394 | 29.9k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 19.3k | { | 392 | 19.3k | reserve(count); | 393 | 19.3k | m_count = count; | 394 | 19.3k | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 57 | { | 392 | 57 | reserve(count); | 393 | 57 | m_count = count; | 394 | 57 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 42.7k | { | 392 | 42.7k | reserve(count); | 393 | 42.7k | m_count = count; | 394 | 42.7k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 75.1k | { | 392 | 75.1k | reserve(count); | 393 | 75.1k | m_count = count; | 394 | 75.1k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 6 | { | 392 | 6 | reserve(count); | 393 | 6 | m_count = count; | 394 | 6 | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 42.6k | { | 392 | 42.6k | reserve(count); | 393 | 42.6k | m_count = count; | 394 | 42.6k | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 19 | { | 392 | 19 | reserve(count); | 393 | 19 | m_count = count; | 394 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 13 | { | 392 | 13 | reserve(count); | 393 | 13 | m_count = count; | 394 | 13 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 3.69k | { | 392 | 3.69k | reserve(count); | 393 | 3.69k | m_count = count; | 394 | 3.69k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 18.3k | { | 392 | 18.3k | reserve(count); | 393 | 18.3k | m_count = count; | 394 | 18.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPKcNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 2 | { | 392 | 2 | reserve(count); | 393 | 2 | m_count = count; | 394 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 122 | { | 392 | 122 | reserve(count); | 393 | 122 | m_count = count; | 394 | 122 | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 6.98k | { | 392 | 6.98k | reserve(count); | 393 | 6.98k | m_count = count; | 394 | 6.98k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 86 | { | 392 | 86 | reserve(count); | 393 | 86 | m_count = count; | 394 | 86 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 4.12k | { | 392 | 4.12k | reserve(count); | 393 | 4.12k | m_count = count; | 394 | 4.12k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 61 | { | 392 | 61 | reserve(count); | 393 | 61 | m_count = count; | 394 | 61 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 61 | { | 392 | 61 | reserve(count); | 393 | 61 | m_count = count; | 394 | 61 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 6.37k | { | 392 | 6.37k | reserve(count); | 393 | 6.37k | m_count = count; | 394 | 6.37k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 67 | { | 392 | 67 | reserve(count); | 393 | 67 | m_count = count; | 394 | 67 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 494 | { | 392 | 494 | reserve(count); | 393 | 494 | m_count = count; | 394 | 494 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 2 | { | 392 | 2 | reserve(count); | 393 | 2 | m_count = count; | 394 | 2 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 27 | { | 392 | 27 | reserve(count); | 393 | 27 | m_count = count; | 394 | 27 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 9.10k | { | 392 | 9.10k | reserve(count); | 393 | 9.10k | m_count = count; | 394 | 9.10k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 19.8k | { | 392 | 19.8k | reserve(count); | 393 | 19.8k | m_count = count; | 394 | 19.8k | } |
|
395 | | |
396 | 0 | void unsafeShrinkToCount(Index count) { m_count = count; } |
397 | | |
398 | | void compress() |
399 | 0 | { |
400 | 0 | if (m_capacity > m_count && m_count > 0) |
401 | 0 | { |
402 | 0 | T* newBuffer = _allocate(m_count); |
403 | 0 | for (Index i = 0; i < m_count; i++) |
404 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); |
405 | |
|
406 | 0 | _deallocateBuffer(); |
407 | 0 | m_buffer = newBuffer; |
408 | 0 | m_capacity = m_count; |
409 | 0 | } |
410 | 0 | } |
411 | | |
412 | | SLANG_FORCE_INLINE const T& operator[](Index idx) const |
413 | 337M | { |
414 | 337M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
415 | 337M | return m_buffer[idx]; |
416 | 337M | } _ZNK5Slang4ListImNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 61.3M | { | 414 | 61.3M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 61.3M | return m_buffer[idx]; | 416 | 61.3M | } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 140k | { | 414 | 140k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 140k | return m_buffer[idx]; | 416 | 140k | } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 18 | { | 414 | 18 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 18 | return m_buffer[idx]; | 416 | 18 | } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 269 | { | 414 | 269 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 269 | return m_buffer[idx]; | 416 | 269 | } |
_ZNK5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 8.81k | { | 414 | 8.81k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 8.81k | return m_buffer[idx]; | 416 | 8.81k | } |
_ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 615 | { | 414 | 615 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 615 | return m_buffer[idx]; | 416 | 615 | } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 63 | { | 414 | 63 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 63 | return m_buffer[idx]; | 416 | 63 | } |
_ZNK5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 265M | { | 414 | 265M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 265M | return m_buffer[idx]; | 416 | 265M | } |
_ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 6.92k | { | 414 | 6.92k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 6.92k | return m_buffer[idx]; | 416 | 6.92k | } |
Unexecuted instantiation: _ZNK5Slang4ListIhNS_17StandardAllocatorEEixEl _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 172k | { | 414 | 172k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 172k | return m_buffer[idx]; | 416 | 172k | } |
_ZNK5Slang4ListINS_5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 4.37k | { | 414 | 4.37k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 4.37k | return m_buffer[idx]; | 416 | 4.37k | } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 456k | { | 414 | 456k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 456k | return m_buffer[idx]; | 416 | 456k | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4StmtENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4NameENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_7TypeExpENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 9 | { | 414 | 9 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 9 | return m_buffer[idx]; | 416 | 9 | } |
_ZNK5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 303k | { | 414 | 303k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 303k | return m_buffer[idx]; | 416 | 303k | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 3.35k | { | 414 | 3.35k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 3.35k | return m_buffer[idx]; | 416 | 3.35k | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 2 | { | 414 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 2 | return m_buffer[idx]; | 416 | 2 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 256 | { | 414 | 256 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 256 | return m_buffer[idx]; | 416 | 256 | } |
_ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 6 | { | 414 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 6 | return m_buffer[idx]; | 416 | 6 | } |
_ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 24 | { | 414 | 24 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 24 | return m_buffer[idx]; | 416 | 24 | } |
_ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 33 | { | 414 | 33 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 33 | return m_buffer[idx]; | 416 | 33 | } |
_ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 972 | { | 414 | 972 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 972 | return m_buffer[idx]; | 416 | 972 | } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 7 | { | 414 | 7 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 7 | return m_buffer[idx]; | 416 | 7 | } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 35 | { | 414 | 35 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 35 | return m_buffer[idx]; | 416 | 35 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 9.28M | { | 414 | 9.28M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 9.28M | return m_buffer[idx]; | 416 | 9.28M | } |
_ZNK5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 186k | { | 414 | 186k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 186k | return m_buffer[idx]; | 416 | 186k | } |
_ZNK5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 12 | { | 414 | 12 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 12 | return m_buffer[idx]; | 416 | 12 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 412 | { | 414 | 412 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 412 | return m_buffer[idx]; | 416 | 412 | } |
_ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 5 | { | 414 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 5 | return m_buffer[idx]; | 416 | 5 | } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 98 | { | 414 | 98 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 98 | return m_buffer[idx]; | 416 | 98 | } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 516 | { | 414 | 516 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 516 | return m_buffer[idx]; | 416 | 516 | } |
_ZNK5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 6 | { | 414 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 6 | return m_buffer[idx]; | 416 | 6 | } |
_ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 74.0k | { | 414 | 74.0k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 74.0k | return m_buffer[idx]; | 416 | 74.0k | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEEixEl _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 191k | { | 414 | 191k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 191k | return m_buffer[idx]; | 416 | 191k | } |
_ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 56 | { | 414 | 56 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 56 | return m_buffer[idx]; | 416 | 56 | } |
|
417 | | |
418 | | SLANG_FORCE_INLINE T& operator[](Index idx) |
419 | 164M | { |
420 | 164M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
421 | 164M | return m_buffer[idx]; |
422 | 164M | } _ZN5Slang4ListImNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 14.6M | { | 420 | 14.6M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 14.6M | return m_buffer[idx]; | 422 | 14.6M | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 491 | { | 420 | 491 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 491 | return m_buffer[idx]; | 422 | 491 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 91.3k | { | 420 | 91.3k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 91.3k | return m_buffer[idx]; | 422 | 91.3k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_EixEl Line | Count | Source | 419 | 228k | { | 420 | 228k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 228k | return m_buffer[idx]; | 422 | 228k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 7.91M | { | 420 | 7.91M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 7.91M | return m_buffer[idx]; | 422 | 7.91M | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 267k | { | 420 | 267k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 267k | return m_buffer[idx]; | 422 | 267k | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 14.8M | { | 420 | 14.8M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 14.8M | return m_buffer[idx]; | 422 | 14.8M | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.05M | { | 420 | 2.05M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.05M | return m_buffer[idx]; | 422 | 2.05M | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.21k | { | 420 | 1.21k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.21k | return m_buffer[idx]; | 422 | 1.21k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.05k | { | 420 | 2.05k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.05k | return m_buffer[idx]; | 422 | 2.05k | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4 | { | 420 | 4 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4 | return m_buffer[idx]; | 422 | 4 | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.33k | { | 420 | 1.33k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.33k | return m_buffer[idx]; | 422 | 1.33k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5.15k | { | 420 | 5.15k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5.15k | return m_buffer[idx]; | 422 | 5.15k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEixEl _ZN5Slang4ListIhNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.78M | { | 420 | 3.78M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.78M | return m_buffer[idx]; | 422 | 3.78M | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 964k | { | 420 | 964k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 964k | return m_buffer[idx]; | 422 | 964k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIbNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 23 | { | 420 | 23 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 23 | return m_buffer[idx]; | 422 | 23 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 503 | { | 420 | 503 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 503 | return m_buffer[idx]; | 422 | 503 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 48 | { | 420 | 48 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 48 | return m_buffer[idx]; | 422 | 48 | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.41M | { | 420 | 1.41M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.41M | return m_buffer[idx]; | 422 | 1.41M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.48M | { | 420 | 1.48M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.48M | return m_buffer[idx]; | 422 | 1.48M | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 10 | { | 420 | 10 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 10 | return m_buffer[idx]; | 422 | 10 | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 103 | { | 420 | 103 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 103 | return m_buffer[idx]; | 422 | 103 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 32.4k | { | 420 | 32.4k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 32.4k | return m_buffer[idx]; | 422 | 32.4k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.07k | { | 420 | 1.07k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.07k | return m_buffer[idx]; | 422 | 1.07k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 38 | { | 420 | 38 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 38 | return m_buffer[idx]; | 422 | 38 | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2 | { | 420 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2 | return m_buffer[idx]; | 422 | 2 | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.12M | { | 420 | 1.12M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.12M | return m_buffer[idx]; | 422 | 1.12M | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 418 | { | 420 | 418 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 418 | return m_buffer[idx]; | 422 | 418 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 48 | { | 420 | 48 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 48 | return m_buffer[idx]; | 422 | 48 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 78 | { | 420 | 78 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 78 | return m_buffer[idx]; | 422 | 78 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 50.4M | { | 420 | 50.4M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 50.4M | return m_buffer[idx]; | 422 | 50.4M | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 33.5k | { | 420 | 33.5k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 33.5k | return m_buffer[idx]; | 422 | 33.5k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 53.0k | { | 420 | 53.0k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 53.0k | return m_buffer[idx]; | 422 | 53.0k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 37.5k | { | 420 | 37.5k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 37.5k | return m_buffer[idx]; | 422 | 37.5k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4.39k | { | 420 | 4.39k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4.39k | return m_buffer[idx]; | 422 | 4.39k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEixEl slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 171 | { | 420 | 171 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 171 | return m_buffer[idx]; | 422 | 171 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 176k | { | 420 | 176k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 176k | return m_buffer[idx]; | 422 | 176k | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 46 | { | 420 | 46 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 46 | return m_buffer[idx]; | 422 | 46 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 6 | { | 420 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 6 | return m_buffer[idx]; | 422 | 6 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.72M | { | 420 | 3.72M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.72M | return m_buffer[idx]; | 422 | 3.72M | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.44k | { | 420 | 1.44k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.44k | return m_buffer[idx]; | 422 | 1.44k | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 792 | { | 420 | 792 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 792 | return m_buffer[idx]; | 422 | 792 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 6 | { | 420 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 6 | return m_buffer[idx]; | 422 | 6 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 708 | { | 420 | 708 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 708 | return m_buffer[idx]; | 422 | 708 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 6.06M | { | 420 | 6.06M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 6.06M | return m_buffer[idx]; | 422 | 6.06M | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.35k | { | 420 | 2.35k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.35k | return m_buffer[idx]; | 422 | 2.35k | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_EixEl Line | Count | Source | 419 | 137 | { | 420 | 137 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 137 | return m_buffer[idx]; | 422 | 137 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 93 | { | 420 | 93 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 93 | return m_buffer[idx]; | 422 | 93 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.88k | { | 420 | 1.88k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.88k | return m_buffer[idx]; | 422 | 1.88k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.10k | { | 420 | 2.10k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.10k | return m_buffer[idx]; | 422 | 2.10k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 386k | { | 420 | 386k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 386k | return m_buffer[idx]; | 422 | 386k | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 17.4M | { | 420 | 17.4M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 17.4M | return m_buffer[idx]; | 422 | 17.4M | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4.18M | { | 420 | 4.18M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4.18M | return m_buffer[idx]; | 422 | 4.18M | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 97.8k | { | 420 | 97.8k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 97.8k | return m_buffer[idx]; | 422 | 97.8k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 364k | { | 420 | 364k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 364k | return m_buffer[idx]; | 422 | 364k | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 13 | { | 420 | 13 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 13 | return m_buffer[idx]; | 422 | 13 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4 | { | 420 | 4 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4 | return m_buffer[idx]; | 422 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 11 | { | 420 | 11 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 11 | return m_buffer[idx]; | 422 | 11 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.93k | { | 420 | 1.93k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.93k | return m_buffer[idx]; | 422 | 1.93k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.70k | { | 420 | 1.70k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.70k | return m_buffer[idx]; | 422 | 1.70k | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 710 | { | 420 | 710 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 710 | return m_buffer[idx]; | 422 | 710 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5 | { | 420 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5 | return m_buffer[idx]; | 422 | 5 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 37 | { | 420 | 37 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 37 | return m_buffer[idx]; | 422 | 37 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 9 | { | 420 | 9 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 9 | return m_buffer[idx]; | 422 | 9 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 10 | { | 420 | 10 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 10 | return m_buffer[idx]; | 422 | 10 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.24M | { | 420 | 1.24M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.24M | return m_buffer[idx]; | 422 | 1.24M | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.12M | { | 420 | 1.12M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.12M | return m_buffer[idx]; | 422 | 1.12M | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEEixEl _ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.73k | { | 420 | 3.73k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.73k | return m_buffer[idx]; | 422 | 3.73k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 37.1k | { | 420 | 37.1k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 37.1k | return m_buffer[idx]; | 422 | 37.1k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 77 | { | 420 | 77 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 77 | return m_buffer[idx]; | 422 | 77 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 211k | { | 420 | 211k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 211k | return m_buffer[idx]; | 422 | 211k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 185 | { | 420 | 185 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 185 | return m_buffer[idx]; | 422 | 185 | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 98 | { | 420 | 98 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 98 | return m_buffer[idx]; | 422 | 98 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 546 | { | 420 | 546 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 546 | return m_buffer[idx]; | 422 | 546 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 6 | { | 420 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 6 | return m_buffer[idx]; | 422 | 6 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2 | { | 420 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2 | return m_buffer[idx]; | 422 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 641 | { | 420 | 641 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 641 | return m_buffer[idx]; | 422 | 641 | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2 | { | 420 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2 | return m_buffer[idx]; | 422 | 2 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 544 | { | 420 | 544 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 544 | return m_buffer[idx]; | 422 | 544 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 118 | { | 420 | 118 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 118 | return m_buffer[idx]; | 422 | 118 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.79k | { | 420 | 1.79k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.79k | return m_buffer[idx]; | 422 | 1.79k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 23.7k | { | 420 | 23.7k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 23.7k | return m_buffer[idx]; | 422 | 23.7k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 839 | { | 420 | 839 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 839 | return m_buffer[idx]; | 422 | 839 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.83k | { | 420 | 1.83k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.83k | return m_buffer[idx]; | 422 | 1.83k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 47 | { | 420 | 47 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 47 | return m_buffer[idx]; | 422 | 47 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 158 | { | 420 | 158 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 158 | return m_buffer[idx]; | 422 | 158 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.50k | { | 420 | 3.50k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.50k | return m_buffer[idx]; | 422 | 3.50k | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 29 | { | 420 | 29 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 29 | return m_buffer[idx]; | 422 | 29 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 305 | { | 420 | 305 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 305 | return m_buffer[idx]; | 422 | 305 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 642 | { | 420 | 642 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 642 | return m_buffer[idx]; | 422 | 642 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 156 | { | 420 | 156 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 156 | return m_buffer[idx]; | 422 | 156 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 640 | { | 420 | 640 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 640 | return m_buffer[idx]; | 422 | 640 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 78 | { | 420 | 78 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 78 | return m_buffer[idx]; | 422 | 78 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 67 | { | 420 | 67 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 67 | return m_buffer[idx]; | 422 | 67 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPKcNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 8 | { | 420 | 8 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 8 | return m_buffer[idx]; | 422 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1 | { | 420 | 1 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1 | return m_buffer[idx]; | 422 | 1 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 75 | { | 420 | 75 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 75 | return m_buffer[idx]; | 422 | 75 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 9.28M | { | 420 | 9.28M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 9.28M | return m_buffer[idx]; | 422 | 9.28M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 14.7M | { | 420 | 14.7M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 14.7M | return m_buffer[idx]; | 422 | 14.7M | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.32M | { | 420 | 2.32M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.32M | return m_buffer[idx]; | 422 | 2.32M | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.14M | { | 420 | 1.14M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.14M | return m_buffer[idx]; | 422 | 1.14M | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.16M | { | 420 | 1.16M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.16M | return m_buffer[idx]; | 422 | 1.16M | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.14M | { | 420 | 1.14M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.14M | return m_buffer[idx]; | 422 | 1.14M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 12 | { | 420 | 12 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 12 | return m_buffer[idx]; | 422 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_EixEl Line | Count | Source | 419 | 390 | { | 420 | 390 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 390 | return m_buffer[idx]; | 422 | 390 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 27.9k | { | 420 | 27.9k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 27.9k | return m_buffer[idx]; | 422 | 27.9k | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.87k | { | 420 | 1.87k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.87k | return m_buffer[idx]; | 422 | 1.87k | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 992 | { | 420 | 992 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 992 | return m_buffer[idx]; | 422 | 992 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 156 | { | 420 | 156 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 156 | return m_buffer[idx]; | 422 | 156 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 849 | { | 420 | 849 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 849 | return m_buffer[idx]; | 422 | 849 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 738 | { | 420 | 738 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 738 | return m_buffer[idx]; | 422 | 738 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_EixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 27 | { | 420 | 27 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 27 | return m_buffer[idx]; | 422 | 27 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 145 | { | 420 | 145 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 145 | return m_buffer[idx]; | 422 | 145 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 39.2k | { | 420 | 39.2k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 39.2k | return m_buffer[idx]; | 422 | 39.2k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 41.1k | { | 420 | 41.1k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 41.1k | return m_buffer[idx]; | 422 | 41.1k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEEixEl |
423 | | |
424 | | template<typename Func> |
425 | | Index findFirstIndex(const Func& predicate) const |
426 | 17.7k | { |
427 | 109k | for (Index i = 0; i < m_count; i++) |
428 | 101k | { |
429 | 101k | if (predicate(m_buffer[i])) |
430 | 9.98k | return i; |
431 | 101k | } |
432 | 7.72k | return -1; |
433 | 17.7k | } _ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE14findFirstIndexIZNKS1_8findNameERKNS_6StringEEUlRKS2_E_EElRKT_ Line | Count | Source | 426 | 5.61k | { | 427 | 31.9k | for (Index i = 0; i < m_count; i++) | 428 | 27.2k | { | 429 | 27.2k | if (predicate(m_buffer[i])) | 430 | 899 | return i; | 431 | 27.2k | } | 432 | 4.71k | return -1; | 433 | 5.61k | } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE14findFirstIndexIZNS_17CompilerOptionSet3addEN5slang18CompilerOptionNameERKS3_bEUlRKS1_E_EElRKT_ Line | Count | Source | 426 | 9.08k | { | 427 | 74.6k | for (Index i = 0; i < m_count; i++) | 428 | 74.6k | { | 429 | 74.6k | if (predicate(m_buffer[i])) | 430 | 9.08k | return i; | 431 | 74.6k | } | 432 | 0 | return -1; | 433 | 9.08k | } |
Unexecuted instantiation: slang-ast-print.cpp:_ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE14findFirstIndexIZNS1_7getPartENS2_4TypeERKNS_18UnownedStringSliceERKS4_E3$_0EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE14findFirstIndexIZNKS1_10indexOfKeyERKNS_18UnownedStringSliceEEUlRKS2_E_EElRKT_ slang-legalize-types.cpp:_ZNK5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE14findFirstIndexIZNS_16legalizeTypeImplEPS1_PNS_6IRTypeEE3$_0EElRKT_ Line | Count | Source | 426 | 2.95k | { | 427 | 2.96k | for (Index i = 0; i < m_count; i++) | 428 | 2 | { | 429 | 2 | if (predicate(m_buffer[i])) | 430 | 0 | return i; | 431 | 2 | } | 432 | 2.95k | return -1; | 433 | 2.95k | } |
slang-doc-extractor.cpp:_ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE14findFirstIndexIZNS_18DocMarkupExtractor7extractEPKNS6_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERS4_RNS0_INS6_16SearchItemOutputES3_EEE3$_1EElRKT_ Line | Count | Source | 426 | 27 | { | 427 | 28 | for (Index i = 0; i < m_count; i++) | 428 | 1 | { | 429 | 1 | if (predicate(m_buffer[i])) | 430 | 0 | return i; | 431 | 1 | } | 432 | 27 | return -1; | 433 | 27 | } |
slang-downstream-compiler-set.cpp:_ZNK5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE14findFirstIndexIZNS_21DownstreamCompilerSet16hasSharedLibraryEPS2_E3$_0EElRKT_ Line | Count | Source | 426 | 21 | { | 427 | 21 | for (Index i = 0; i < m_count; i++) | 428 | 0 | { | 429 | 0 | if (predicate(m_buffer[i])) | 430 | 0 | return i; | 431 | 0 | } | 432 | 21 | return -1; | 433 | 21 | } |
Unexecuted instantiation: slang-spirv-core-grammar.cpp:_ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE14findFirstIndexIZNS_20SPIRVCoreGrammarInfo12loadFromJSONERNS_10SourceViewERNS_14DiagnosticSinkEE3$_0EElRKT_ Unexecuted instantiation: slang-spirv-core-grammar.cpp:_ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE14findFirstIndexIZNS_20SPIRVCoreGrammarInfo12loadFromJSONERNS_10SourceViewERNS_14DiagnosticSinkEE3$_1EElRKT_ |
434 | | |
435 | | template<typename T2> |
436 | | Index indexOf(const T2& val) const |
437 | 124k | { |
438 | 380k | for (Index i = 0; i < m_count; i++) |
439 | 271k | { |
440 | 271k | if (m_buffer[i] == val) |
441 | 15.1k | return i; |
442 | 271k | } |
443 | 109k | return -1; |
444 | 124k | } _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 28 | { | 438 | 46 | for (Index i = 0; i < m_count; i++) | 439 | 18 | { | 440 | 18 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 18 | } | 443 | 28 | return -1; | 444 | 28 | } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 59 | { | 438 | 141 | for (Index i = 0; i < m_count; i++) | 439 | 141 | { | 440 | 141 | if (m_buffer[i] == val) | 441 | 59 | return i; | 442 | 141 | } | 443 | 0 | return -1; | 444 | 59 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ _ZNK5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E7indexOfIS3_EElRKT_ Line | Count | Source | 437 | 1 | { | 438 | 1 | for (Index i = 0; i < m_count; i++) | 439 | 0 | { | 440 | 0 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 0 | } | 443 | 1 | return -1; | 444 | 1 | } |
_ZNK5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E7indexOfIS3_EElRKT_ Line | Count | Source | 437 | 1 | { | 438 | 1 | for (Index i = 0; i < m_count; i++) | 439 | 0 | { | 440 | 0 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 0 | } | 443 | 1 | return -1; | 444 | 1 | } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 179 | { | 438 | 305 | for (Index i = 0; i < m_count; i++) | 439 | 188 | { | 440 | 188 | if (m_buffer[i] == val) | 441 | 62 | return i; | 442 | 188 | } | 443 | 117 | return -1; | 444 | 179 | } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 16 | { | 438 | 16 | for (Index i = 0; i < m_count; i++) | 439 | 14 | { | 440 | 14 | if (m_buffer[i] == val) | 441 | 14 | return i; | 442 | 14 | } | 443 | 2 | return -1; | 444 | 16 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ _ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 17.9k | { | 438 | 65.4k | for (Index i = 0; i < m_count; i++) | 439 | 60.8k | { | 440 | 60.8k | if (m_buffer[i] == val) | 441 | 13.3k | return i; | 442 | 60.8k | } | 443 | 4.63k | return -1; | 444 | 17.9k | } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 277 | { | 438 | 605 | for (Index i = 0; i < m_count; i++) | 439 | 345 | { | 440 | 345 | if (m_buffer[i] == val) | 441 | 17 | return i; | 442 | 345 | } | 443 | 260 | return -1; | 444 | 277 | } |
Unexecuted instantiation: _ZNK5Slang4ListIlNS_17StandardAllocatorEE7indexOfIlEElRKT_ _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 105k | { | 438 | 314k | for (Index i = 0; i < m_count; i++) | 439 | 209k | { | 440 | 209k | if (m_buffer[i] == val) | 441 | 1.71k | return i; | 442 | 209k | } | 443 | 104k | return -1; | 444 | 105k | } |
Unexecuted instantiation: _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE7indexOfIS3_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7indexOfIA5_cEElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE7indexOfINS_19TerminatedCharSliceEEElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ |
445 | | |
446 | | template<typename Func> |
447 | | Index findLastIndex(const Func& predicate) const |
448 | | { |
449 | | for (Index i = m_count - 1; i >= 0; i--) |
450 | | { |
451 | | if (predicate(m_buffer[i])) |
452 | | return i; |
453 | | } |
454 | | return -1; |
455 | | } |
456 | | |
457 | | template<typename T2> |
458 | | Index lastIndexOf(const T2& val) const |
459 | | { |
460 | | for (Index i = m_count - 1; i >= 0; i--) |
461 | | { |
462 | | if (m_buffer[i] == val) |
463 | | return i; |
464 | | } |
465 | | return -1; |
466 | | } |
467 | | |
468 | 18.1k | bool contains(const T& val) const { return indexOf(val) != Index(-1); }_ZNK5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E8containsERKS3_ Line | Count | Source | 468 | 1 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E8containsERKS3_ Line | Count | Source | 468 | 1 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 179 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8containsERKS1_ Line | Count | Source | 468 | 16 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 28 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE8containsERKS2_ _ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 17.9k | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
|
469 | | |
470 | | void sort() |
471 | 8.33k | { |
472 | 42.3M | sort([](const T& t1, const T& t2) { return t1 < t2; });_ZZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortEvENKUlRKS1_S5_E_clES5_S5_ Line | Count | Source | 472 | 53.5k | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ _ZZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortEvENKUlRKS1_S5_E_clES5_S5_ Line | Count | Source | 472 | 27.3k | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
_ZZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ Line | Count | Source | 472 | 20.9M | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
_ZZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ Line | Count | Source | 472 | 21.3M | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
|
473 | 8.33k | } _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 1 | { | 472 | 1 | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 1 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortEv _ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 1.32k | { | 472 | 1.32k | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 1.32k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 6.92k | { | 472 | 6.92k | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 6.92k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 86 | { | 472 | 86 | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 86 | } |
|
474 | | |
475 | | template<typename Comparer> |
476 | | void sort(Comparer compare) |
477 | 15.9k | { |
478 | | // insertionSort(buffer, 0, _count - 1); |
479 | | // quickSort(buffer, 0, _count - 1, compare); |
480 | 15.9k | std::sort(m_buffer, m_buffer + m_count, compare); |
481 | 15.9k | } _ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE4sortIZNS_23PolynomialIntValBuilder12canonicalizeEPNS_4TypeEEUlS2_S2_E_EEvT_ Line | Count | Source | 477 | 177 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 177 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 177 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE4sortIZNS_23PolynomialIntValBuilder12canonicalizeEPNS_4TypeEEUlS2_S2_E_EEvT_ Line | Count | Source | 477 | 102 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 102 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 102 | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE4sortIZNS_30getCanonicalGenericConstraintsEPNS_10ASTBuilderENS_7DeclRefINS_13ContainerDeclEEEE3$_0EEvT_ slang-check-decl.cpp:_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE4sortIZNS_31getCanonicalGenericConstraints2EPNS_10ASTBuilderENS_7DeclRefINS_13ContainerDeclEEEE3$_0EEvT_ Line | Count | Source | 477 | 6.22k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 6.22k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 6.22k | } |
slang-check-overload.cpp:_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE4sortIZNS_16SemanticsVisitor13ResolveInvokeEPNS_10InvokeExprEE3$_0EEvT_ Line | Count | Source | 477 | 694 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 694 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 694 | } |
Unexecuted instantiation: slang-compile-request.cpp:_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE4sortIZNS_L28_calcViewInitiatingHierarchyEPNS_13SourceManagerERNS_10DictionaryIS2_S4_NS_4HashIS2_EESt8equal_toIS2_EEEE3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE4sortIZNS_17DocMarkdownWriter24writeCallableOverridableEPNS_12DocumentPageERKNS_11MarkupEntryES2_E3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_7VarDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_12PropertyDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_12CallableDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_17DocMarkdownWriter12writeAggTypeEPNS_12DocumentPageERKNS_11MarkupEntryEPNS_15AggTypeDeclBaseEE3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE4sortIZNS_9sortPagesEPS2_E3$_0EEvT_ _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortIZNS3_4sortEvEUlRKS1_S6_E_EEvT_ Line | Count | Source | 477 | 1 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 1 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 1 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE4sortIZNS1_18emitAggregateValueEPNS_9IRBuilderEPNS_6IRTypeES4_EUlRKS2_SB_E_EEvT_ Line | Count | Source | 477 | 325 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 325 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 325 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE4sortIZNS2_34_orderRangeStartsDeterministicallyEvE3$_0EEvT_ Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ _ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortIZNS3_4sortEvEUlRKS1_S6_E_EEvT_ Line | Count | Source | 477 | 1.32k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 1.32k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 1.32k | } |
slang-serialize-ast.cpp:_ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE4sortIZNS_L10_sortByKeyIS2_jEEvRNS0_INS1_IT_T0_EES4_EEEUlRKS3_SE_E_EEvS8_ Line | Count | Source | 477 | 9 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 9 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 9 | } |
slang-serialize-ast.cpp:_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE4sortIZNS_L10_sortByKeyIS2_S4_EEvRNS0_INS1_IT_T0_EES6_EEEUlRKS5_SG_E_EEvSA_ Line | Count | Source | 477 | 3 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 3 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 3 | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ Line | Count | Source | 477 | 6.92k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 6.92k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 6.92k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ Line | Count | Source | 477 | 86 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 86 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 86 | } |
Unexecuted instantiation: slang-semantic-version.cpp:_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE4sortIZNS_20MatchSemanticVersion11findAnyBestEPKS1_lRKS5_E3$_0EEvT_ slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E4sortIZNS1_7extractES4_lS6_S8_SD_SG_E3$_0EEvT_ Line | Count | Source | 477 | 28 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 28 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 28 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E4sortIZNS1_7extractES4_lS6_S8_SD_SG_E3$_2EEvT_ Line | Count | Source | 477 | 28 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 28 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 28 | } |
slang-json-value.cpp:_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE4sortIZNS_13JSONContainer8areEqualEPKS1_S7_lE3$_0EEvT_ Line | Count | Source | 477 | 2 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 2 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 2 | } |
slang-json-value.cpp:_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE4sortIZNS_13JSONContainer8areEqualEPKS1_S7_lE3$_1EEvT_ Line | Count | Source | 477 | 2 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 2 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE4sortIPFbRKS2_S7_EEEvT_ |
482 | | |
483 | | void stableSort() |
484 | | { |
485 | | stableSort([](const T& t1, const T& t2) { return t1 < t2; }); |
486 | | } |
487 | | |
488 | | template<typename Comparer> |
489 | | void stableSort(Comparer compare) |
490 | | { |
491 | | std::stable_sort(m_buffer, m_buffer + m_count, compare); |
492 | | } |
493 | | |
494 | | template<typename IterateFunc> |
495 | | void forEach(IterateFunc f) const |
496 | | { |
497 | | for (Index i = 0; i < m_count; i++) |
498 | | f(m_buffer[i]); |
499 | | } |
500 | | |
501 | | template<typename Comparer> |
502 | | void quickSort(T* vals, Index startIndex, Index endIndex, Comparer comparer) |
503 | | { |
504 | | static const Index kMinQSortSize = 32; |
505 | | |
506 | | if (startIndex < endIndex) |
507 | | { |
508 | | if (endIndex - startIndex < kMinQSortSize) |
509 | | insertionSort(vals, startIndex, endIndex, comparer); |
510 | | else |
511 | | { |
512 | | Index pivotIndex = (startIndex + endIndex) >> 1; |
513 | | Index pivotNewIndex = partition(vals, startIndex, endIndex, pivotIndex, comparer); |
514 | | quickSort(vals, startIndex, pivotNewIndex - 1, comparer); |
515 | | quickSort(vals, pivotNewIndex + 1, endIndex, comparer); |
516 | | } |
517 | | } |
518 | | } |
519 | | template<typename Comparer> |
520 | | Index partition(T* vals, Index left, Index right, Index pivotIndex, Comparer comparer) |
521 | | { |
522 | | T pivotValue = vals[pivotIndex]; |
523 | | swapElements(vals, right, pivotIndex); |
524 | | Index storeIndex = left; |
525 | | for (Index i = left; i < right; i++) |
526 | | { |
527 | | if (comparer(vals[i], pivotValue)) |
528 | | { |
529 | | swapElements(vals, i, storeIndex); |
530 | | storeIndex++; |
531 | | } |
532 | | } |
533 | | swapElements(vals, storeIndex, right); |
534 | | return storeIndex; |
535 | | } |
536 | | template<typename Comparer> |
537 | | void insertionSort(T* vals, Index startIndex, Index endIndex, Comparer comparer) |
538 | | { |
539 | | for (Index i = startIndex + 1; i <= endIndex; i++) |
540 | | { |
541 | | T insertValue = static_cast<T&&>(vals[i]); |
542 | | Index insertIndex = i - 1; |
543 | | while (insertIndex >= startIndex && comparer(insertValue, vals[insertIndex])) |
544 | | { |
545 | | vals[insertIndex + 1] = static_cast<T&&>(vals[insertIndex]); |
546 | | insertIndex--; |
547 | | } |
548 | | vals[insertIndex + 1] = static_cast<T&&>(insertValue); |
549 | | } |
550 | | } |
551 | | |
552 | | inline static void swapElements(T* vals, Index index1, Index index2) |
553 | 12.7k | { |
554 | 12.7k | if (index1 != index2) |
555 | 12.7k | { |
556 | 12.7k | T tmp = static_cast<T&&>(vals[index1]); |
557 | 12.7k | vals[index1] = static_cast<T&&>(vals[index2]); |
558 | 12.7k | vals[index2] = static_cast<T&&>(tmp); |
559 | 12.7k | } |
560 | 12.7k | } _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 248 | { | 554 | 248 | if (index1 != index2) | 555 | 248 | { | 556 | 248 | T tmp = static_cast<T&&>(vals[index1]); | 557 | 248 | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 248 | vals[index2] = static_cast<T&&>(tmp); | 559 | 248 | } | 560 | 248 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE12swapElementsEPS1_ll _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 406 | { | 554 | 406 | if (index1 != index2) | 555 | 406 | { | 556 | 406 | T tmp = static_cast<T&&>(vals[index1]); | 557 | 406 | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 406 | vals[index2] = static_cast<T&&>(tmp); | 559 | 406 | } | 560 | 406 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 3.13k | { | 554 | 3.13k | if (index1 != index2) | 555 | 3.13k | { | 556 | 3.13k | T tmp = static_cast<T&&>(vals[index1]); | 557 | 3.13k | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 3.13k | vals[index2] = static_cast<T&&>(tmp); | 559 | 3.13k | } | 560 | 3.13k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 8.95k | { | 554 | 8.95k | if (index1 != index2) | 555 | 8.95k | { | 556 | 8.95k | T tmp = static_cast<T&&>(vals[index1]); | 557 | 8.95k | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 8.95k | vals[index2] = static_cast<T&&>(tmp); | 559 | 8.95k | } | 560 | 8.95k | } |
|
561 | | |
562 | 0 | inline void swapElements(Index index1, Index index2) { swapElements(m_buffer, index1, index2); } |
563 | | |
564 | | template<typename T2, typename Comparer> |
565 | | Index binarySearch(const T2& obj, Comparer comparer) const |
566 | 0 | { |
567 | 0 | Index imin = 0, imax = m_count - 1; |
568 | 0 | while (imax >= imin) |
569 | 0 | { |
570 | 0 | Index imid = imin + ((imax - imin) >> 1); |
571 | 0 | int compareResult = comparer(m_buffer[imid], obj); |
572 | 0 | if (compareResult == 0) |
573 | 0 | return imid; |
574 | 0 | else if (compareResult < 0) |
575 | 0 | imin = imid + 1; |
576 | 0 | else |
577 | 0 | imax = imid - 1; |
578 | 0 | } |
579 | | // TODO: The return value on a failed search should be |
580 | | // the bitwise negation of the index where `obj` should |
581 | | // be inserted to be in the proper sorted location. |
582 | 0 | return -1; |
583 | 0 | } Unexecuted instantiation: _ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE12binarySearchIS2_ZNKS4_12binarySearchIS2_EElRKT_EUlRS2_RKS2_E_EElS9_T0_ Unexecuted instantiation: slang-language-server-auto-format.cpp:_ZNK5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE12binarySearchIlZNS_12formatSourceENS_18UnownedStringSliceElllRKS3_RKNS_13FormatOptionsEE3$_0EElRKT_T0_ |
584 | | |
585 | | template<typename T2> |
586 | | Index binarySearch(const T2& obj) const |
587 | 0 | { |
588 | 0 | return binarySearch( |
589 | 0 | obj, |
590 | 0 | [](T& curObj, const T2& thatObj) -> int |
591 | 0 | { |
592 | 0 | if (curObj < thatObj) |
593 | 0 | return -1; |
594 | 0 | else if (curObj == thatObj) |
595 | 0 | return 0; |
596 | 0 | else |
597 | 0 | return 1; |
598 | 0 | }); |
599 | 0 | } |
600 | | |
601 | | private: |
602 | | T* m_buffer; ///< A new T[N] allocated buffer. NOTE! All elements up to capacity are in some |
603 | | ///< valid form for T. |
604 | | Index m_capacity; ///< The total capacity of elements |
605 | | Index m_count; ///< The amount of elements |
606 | | |
607 | | void _deallocateBuffer() |
608 | 86.2M | { |
609 | 86.2M | if (m_buffer) |
610 | 39.1M | { |
611 | 39.1M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); |
612 | 39.1M | m_buffer = nullptr; |
613 | 39.1M | } |
614 | 86.2M | } _ZN5Slang4ListImNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 55.2M | { | 609 | 55.2M | if (m_buffer) | 610 | 25.7M | { | 611 | 25.7M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 25.7M | m_buffer = nullptr; | 613 | 25.7M | } | 614 | 55.2M | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 41.8k | { | 609 | 41.8k | if (m_buffer) | 610 | 40.3k | { | 611 | 40.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 40.3k | m_buffer = nullptr; | 613 | 40.3k | } | 614 | 41.8k | } |
_ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 30 | { | 609 | 30 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 30 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 67.4k | { | 609 | 67.4k | if (m_buffer) | 610 | 66.4k | { | 611 | 66.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 66.4k | m_buffer = nullptr; | 613 | 66.4k | } | 614 | 67.4k | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 6 | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 79 | { | 609 | 79 | if (m_buffer) | 610 | 73 | { | 611 | 73 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 73 | m_buffer = nullptr; | 613 | 73 | } | 614 | 79 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 55.8k | { | 609 | 55.8k | if (m_buffer) | 610 | 48.7k | { | 611 | 48.7k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 48.7k | m_buffer = nullptr; | 613 | 48.7k | } | 614 | 55.8k | } |
_ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.9k | { | 609 | 13.9k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 13.9k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 14.0k | { | 609 | 14.0k | if (m_buffer) | 610 | 167 | { | 611 | 167 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 167 | m_buffer = nullptr; | 613 | 167 | } | 614 | 14.0k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.05k | { | 609 | 2.05k | if (m_buffer) | 610 | 1.80k | { | 611 | 1.80k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.80k | m_buffer = nullptr; | 613 | 1.80k | } | 614 | 2.05k | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.85k | { | 609 | 3.85k | if (m_buffer) | 610 | 3.23k | { | 611 | 3.23k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.23k | m_buffer = nullptr; | 613 | 3.23k | } | 614 | 3.85k | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9.56k | { | 609 | 9.56k | if (m_buffer) | 610 | 9.34k | { | 611 | 9.34k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9.34k | m_buffer = nullptr; | 613 | 9.34k | } | 614 | 9.56k | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 40.9k | { | 609 | 40.9k | if (m_buffer) | 610 | 1.15k | { | 611 | 1.15k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.15k | m_buffer = nullptr; | 613 | 1.15k | } | 614 | 40.9k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.28k | { | 609 | 2.28k | if (m_buffer) | 610 | 1.87k | { | 611 | 1.87k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.87k | m_buffer = nullptr; | 613 | 1.87k | } | 614 | 2.28k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 234k | { | 609 | 234k | if (m_buffer) | 610 | 24.2k | { | 611 | 24.2k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 24.2k | m_buffer = nullptr; | 613 | 24.2k | } | 614 | 234k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 68 | { | 609 | 68 | if (m_buffer) | 610 | 23 | { | 611 | 23 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 23 | m_buffer = nullptr; | 613 | 23 | } | 614 | 68 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 110 | { | 609 | 110 | if (m_buffer) | 610 | 19 | { | 611 | 19 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19 | m_buffer = nullptr; | 613 | 19 | } | 614 | 110 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 69 | { | 609 | 69 | if (m_buffer) | 610 | 69 | { | 611 | 69 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 69 | m_buffer = nullptr; | 613 | 69 | } | 614 | 69 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 249 | { | 609 | 249 | if (m_buffer) | 610 | 249 | { | 611 | 249 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 249 | m_buffer = nullptr; | 613 | 249 | } | 614 | 249 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 12.2k | { | 609 | 12.2k | if (m_buffer) | 610 | 5.77k | { | 611 | 5.77k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.77k | m_buffer = nullptr; | 613 | 5.77k | } | 614 | 12.2k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.6k | { | 609 | 11.6k | if (m_buffer) | 610 | 1.31k | { | 611 | 1.31k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.31k | m_buffer = nullptr; | 613 | 1.31k | } | 614 | 11.6k | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 698k | { | 609 | 698k | if (m_buffer) | 610 | 698k | { | 611 | 698k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 698k | m_buffer = nullptr; | 613 | 698k | } | 614 | 698k | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 205k | { | 609 | 205k | if (m_buffer) | 610 | 537 | { | 611 | 537 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 537 | m_buffer = nullptr; | 613 | 537 | } | 614 | 205k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 123k | { | 609 | 123k | if (m_buffer) | 610 | 27.8k | { | 611 | 27.8k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 27.8k | m_buffer = nullptr; | 613 | 27.8k | } | 614 | 123k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 181k | { | 609 | 181k | if (m_buffer) | 610 | 85.9k | { | 611 | 85.9k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 85.9k | m_buffer = nullptr; | 613 | 85.9k | } | 614 | 181k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.33M | { | 609 | 1.33M | if (m_buffer) | 610 | 1.16M | { | 611 | 1.16M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.16M | m_buffer = nullptr; | 613 | 1.16M | } | 614 | 1.33M | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 428k | { | 609 | 428k | if (m_buffer) | 610 | 116k | { | 611 | 116k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 116k | m_buffer = nullptr; | 613 | 116k | } | 614 | 428k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 278k | { | 609 | 278k | if (m_buffer) | 610 | 246k | { | 611 | 246k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 246k | m_buffer = nullptr; | 613 | 246k | } | 614 | 278k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 64.8k | { | 609 | 64.8k | if (m_buffer) | 610 | 36.4k | { | 611 | 36.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 36.4k | m_buffer = nullptr; | 613 | 36.4k | } | 614 | 64.8k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 34 | { | 609 | 34 | if (m_buffer) | 610 | 33 | { | 611 | 33 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 33 | m_buffer = nullptr; | 613 | 33 | } | 614 | 34 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3 | { | 609 | 3 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 3 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 717 | { | 609 | 717 | if (m_buffer) | 610 | 21 | { | 611 | 21 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 21 | m_buffer = nullptr; | 613 | 21 | } | 614 | 717 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 77.7k | { | 609 | 77.7k | if (m_buffer) | 610 | 50.8k | { | 611 | 50.8k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 50.8k | m_buffer = nullptr; | 613 | 50.8k | } | 614 | 77.7k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.2k | { | 609 | 18.2k | if (m_buffer) | 610 | 242 | { | 611 | 242 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 242 | m_buffer = nullptr; | 613 | 242 | } | 614 | 18.2k | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 163 | { | 609 | 163 | if (m_buffer) | 610 | 163 | { | 611 | 163 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 163 | m_buffer = nullptr; | 613 | 163 | } | 614 | 163 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.53k | { | 609 | 1.53k | if (m_buffer) | 610 | 1.44k | { | 611 | 1.44k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.44k | m_buffer = nullptr; | 613 | 1.44k | } | 614 | 1.53k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPvNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.05M | { | 609 | 1.05M | if (m_buffer) | 610 | 930 | { | 611 | 930 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 930 | m_buffer = nullptr; | 613 | 930 | } | 614 | 1.05M | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 1.03k | { | 609 | 1.03k | if (m_buffer) | 610 | 1.03k | { | 611 | 1.03k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.03k | m_buffer = nullptr; | 613 | 1.03k | } | 614 | 1.03k | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.03k | { | 609 | 1.03k | if (m_buffer) | 610 | 1.03k | { | 611 | 1.03k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.03k | m_buffer = nullptr; | 613 | 1.03k | } | 614 | 1.03k | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.03k | { | 609 | 1.03k | if (m_buffer) | 610 | 1.03k | { | 611 | 1.03k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.03k | m_buffer = nullptr; | 613 | 1.03k | } | 614 | 1.03k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.3M | { | 609 | 18.3M | if (m_buffer) | 610 | 6.90M | { | 611 | 6.90M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6.90M | m_buffer = nullptr; | 613 | 6.90M | } | 614 | 18.3M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.03k | { | 609 | 2.03k | if (m_buffer) | 610 | 2.02k | { | 611 | 2.02k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.02k | m_buffer = nullptr; | 613 | 2.02k | } | 614 | 2.03k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7.07k | { | 609 | 7.07k | if (m_buffer) | 610 | 7.07k | { | 611 | 7.07k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7.07k | m_buffer = nullptr; | 613 | 7.07k | } | 614 | 7.07k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 147 | { | 609 | 147 | if (m_buffer) | 610 | 147 | { | 611 | 147 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 147 | m_buffer = nullptr; | 613 | 147 | } | 614 | 147 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.70k | { | 609 | 3.70k | if (m_buffer) | 610 | 2.46k | { | 611 | 2.46k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.46k | m_buffer = nullptr; | 613 | 2.46k | } | 614 | 3.70k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.11k | { | 609 | 3.11k | if (m_buffer) | 610 | 1.83k | { | 611 | 1.83k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.83k | m_buffer = nullptr; | 613 | 1.83k | } | 614 | 3.11k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 395 | { | 609 | 395 | if (m_buffer) | 610 | 360 | { | 611 | 360 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 360 | m_buffer = nullptr; | 613 | 360 | } | 614 | 395 | } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 395 | { | 609 | 395 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 395 | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.57k | { | 609 | 1.57k | if (m_buffer) | 610 | 1.10k | { | 611 | 1.10k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.10k | m_buffer = nullptr; | 613 | 1.10k | } | 614 | 1.57k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 506 | { | 609 | 506 | if (m_buffer) | 610 | 195 | { | 611 | 195 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 195 | m_buffer = nullptr; | 613 | 195 | } | 614 | 506 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10.0k | { | 609 | 10.0k | if (m_buffer) | 610 | 10.0k | { | 611 | 10.0k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10.0k | m_buffer = nullptr; | 613 | 10.0k | } | 614 | 10.0k | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.44k | { | 609 | 1.44k | if (m_buffer) | 610 | 32 | { | 611 | 32 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 32 | m_buffer = nullptr; | 613 | 32 | } | 614 | 1.44k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 24 | { | 609 | 24 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 24 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 33 | { | 609 | 33 | if (m_buffer) | 610 | 30 | { | 611 | 30 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 30 | m_buffer = nullptr; | 613 | 30 | } | 614 | 33 | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 45.0k | { | 609 | 45.0k | if (m_buffer) | 610 | 30.9k | { | 611 | 30.9k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 30.9k | m_buffer = nullptr; | 613 | 30.9k | } | 614 | 45.0k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 213 | { | 609 | 213 | if (m_buffer) | 610 | 206 | { | 611 | 206 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 206 | m_buffer = nullptr; | 613 | 206 | } | 614 | 213 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.52k | { | 609 | 6.52k | if (m_buffer) | 610 | 445 | { | 611 | 445 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 445 | m_buffer = nullptr; | 613 | 445 | } | 614 | 6.52k | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.4k | { | 609 | 11.4k | if (m_buffer) | 610 | 751 | { | 611 | 751 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 751 | m_buffer = nullptr; | 613 | 751 | } | 614 | 11.4k | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 12 | { | 609 | 12 | if (m_buffer) | 610 | 12 | { | 611 | 12 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 12 | m_buffer = nullptr; | 613 | 12 | } | 614 | 12 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 12 | { | 609 | 12 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 46.5k | { | 609 | 46.5k | if (m_buffer) | 610 | 46.5k | { | 611 | 46.5k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 46.5k | m_buffer = nullptr; | 613 | 46.5k | } | 614 | 46.5k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 827k | { | 609 | 827k | if (m_buffer) | 610 | 706k | { | 611 | 706k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 706k | m_buffer = nullptr; | 613 | 706k | } | 614 | 827k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 191k | { | 609 | 191k | if (m_buffer) | 610 | 28.1k | { | 611 | 28.1k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28.1k | m_buffer = nullptr; | 613 | 28.1k | } | 614 | 191k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.76k | { | 609 | 1.76k | if (m_buffer) | 610 | 565 | { | 611 | 565 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 565 | m_buffer = nullptr; | 613 | 565 | } | 614 | 1.76k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8.15k | { | 609 | 8.15k | if (m_buffer) | 610 | 8.07k | { | 611 | 8.07k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8.07k | m_buffer = nullptr; | 613 | 8.07k | } | 614 | 8.15k | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 534 | { | 609 | 534 | if (m_buffer) | 610 | 475 | { | 611 | 475 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 475 | m_buffer = nullptr; | 613 | 475 | } | 614 | 534 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 67 | { | 609 | 67 | if (m_buffer) | 610 | 40 | { | 611 | 40 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 40 | m_buffer = nullptr; | 613 | 40 | } | 614 | 67 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 722k | { | 609 | 722k | if (m_buffer) | 610 | 65.0k | { | 611 | 65.0k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 65.0k | m_buffer = nullptr; | 613 | 65.0k | } | 614 | 722k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 296k | { | 609 | 296k | if (m_buffer) | 610 | 296k | { | 611 | 296k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 296k | m_buffer = nullptr; | 613 | 296k | } | 614 | 296k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 848 | { | 609 | 848 | if (m_buffer) | 610 | 228 | { | 611 | 228 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 228 | m_buffer = nullptr; | 613 | 228 | } | 614 | 848 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 20 | { | 609 | 20 | if (m_buffer) | 610 | 16 | { | 611 | 16 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 16 | m_buffer = nullptr; | 613 | 16 | } | 614 | 20 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 565 | { | 609 | 565 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 565 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 565 | { | 609 | 565 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 565 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 99.9k | { | 609 | 99.9k | if (m_buffer) | 610 | 69.4k | { | 611 | 69.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 69.4k | m_buffer = nullptr; | 613 | 69.4k | } | 614 | 99.9k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.80k | { | 609 | 1.80k | if (m_buffer) | 610 | 1.49k | { | 611 | 1.49k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.49k | m_buffer = nullptr; | 613 | 1.49k | } | 614 | 1.80k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 835k | { | 609 | 835k | if (m_buffer) | 610 | 827k | { | 611 | 827k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 827k | m_buffer = nullptr; | 613 | 827k | } | 614 | 835k | } |
_ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1 | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 169 | { | 609 | 169 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 169 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.44k | { | 609 | 1.44k | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1.44k | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.17k | { | 609 | 1.17k | if (m_buffer) | 610 | 884 | { | 611 | 884 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 884 | m_buffer = nullptr; | 613 | 884 | } | 614 | 1.17k | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 410 | { | 609 | 410 | if (m_buffer) | 610 | 410 | { | 611 | 410 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 410 | m_buffer = nullptr; | 613 | 410 | } | 614 | 410 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.27k | { | 609 | 1.27k | if (m_buffer) | 610 | 869 | { | 611 | 869 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 869 | m_buffer = nullptr; | 613 | 869 | } | 614 | 1.27k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.04k | { | 609 | 2.04k | if (m_buffer) | 610 | 1.07k | { | 611 | 1.07k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.07k | m_buffer = nullptr; | 613 | 1.07k | } | 614 | 2.04k | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 216 | { | 609 | 216 | if (m_buffer) | 610 | 118 | { | 611 | 118 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 118 | m_buffer = nullptr; | 613 | 118 | } | 614 | 216 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 23 | { | 611 | 23 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 23 | m_buffer = nullptr; | 613 | 23 | } | 614 | 405 | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.30k | { | 609 | 2.30k | if (m_buffer) | 610 | 2.25k | { | 611 | 2.25k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.25k | m_buffer = nullptr; | 613 | 2.25k | } | 614 | 2.30k | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.10k | { | 609 | 6.10k | if (m_buffer) | 610 | 1.70k | { | 611 | 1.70k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.70k | m_buffer = nullptr; | 613 | 1.70k | } | 614 | 6.10k | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 67 | { | 609 | 67 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 67 | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 90 | { | 609 | 90 | if (m_buffer) | 610 | 11 | { | 611 | 11 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11 | m_buffer = nullptr; | 613 | 11 | } | 614 | 90 | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 433 | { | 609 | 433 | if (m_buffer) | 610 | 427 | { | 611 | 427 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 427 | m_buffer = nullptr; | 613 | 427 | } | 614 | 433 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 433 | { | 609 | 433 | if (m_buffer) | 610 | 118 | { | 611 | 118 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 118 | m_buffer = nullptr; | 613 | 118 | } | 614 | 433 | } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 433 | { | 609 | 433 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 433 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 458 | { | 609 | 458 | if (m_buffer) | 610 | 458 | { | 611 | 458 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 458 | m_buffer = nullptr; | 613 | 458 | } | 614 | 458 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 29 | { | 609 | 29 | if (m_buffer) | 610 | 29 | { | 611 | 29 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 29 | m_buffer = nullptr; | 613 | 29 | } | 614 | 29 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.41k | { | 609 | 2.41k | if (m_buffer) | 610 | 1.18k | { | 611 | 1.18k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.18k | m_buffer = nullptr; | 613 | 1.18k | } | 614 | 2.41k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 524 | { | 609 | 524 | if (m_buffer) | 610 | 524 | { | 611 | 524 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 524 | m_buffer = nullptr; | 613 | 524 | } | 614 | 524 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 100 | { | 609 | 100 | if (m_buffer) | 610 | 71 | { | 611 | 71 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 71 | m_buffer = nullptr; | 613 | 71 | } | 614 | 100 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 146 | { | 609 | 146 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 146 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18 | { | 609 | 18 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 18 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 146 | { | 609 | 146 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 146 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 41.6k | { | 609 | 41.6k | if (m_buffer) | 610 | 39.1k | { | 611 | 39.1k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 39.1k | m_buffer = nullptr; | 613 | 39.1k | } | 614 | 41.6k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 253 | { | 609 | 253 | if (m_buffer) | 610 | 247 | { | 611 | 247 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 247 | m_buffer = nullptr; | 613 | 247 | } | 614 | 253 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 189k | { | 609 | 189k | if (m_buffer) | 610 | 9.78k | { | 611 | 9.78k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9.78k | m_buffer = nullptr; | 613 | 9.78k | } | 614 | 189k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9.41k | { | 609 | 9.41k | if (m_buffer) | 610 | 7.79k | { | 611 | 7.79k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7.79k | m_buffer = nullptr; | 613 | 7.79k | } | 614 | 9.41k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 6 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 6 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 216 | { | 609 | 216 | if (m_buffer) | 610 | 33 | { | 611 | 33 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 33 | m_buffer = nullptr; | 613 | 33 | } | 614 | 216 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 271 | { | 609 | 271 | if (m_buffer) | 610 | 80 | { | 611 | 80 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 80 | m_buffer = nullptr; | 613 | 80 | } | 614 | 271 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 145 | { | 609 | 145 | if (m_buffer) | 610 | 145 | { | 611 | 145 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 145 | m_buffer = nullptr; | 613 | 145 | } | 614 | 145 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 894 | { | 609 | 894 | if (m_buffer) | 610 | 281 | { | 611 | 281 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 281 | m_buffer = nullptr; | 613 | 281 | } | 614 | 894 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.23k | { | 609 | 1.23k | if (m_buffer) | 610 | 905 | { | 611 | 905 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 905 | m_buffer = nullptr; | 613 | 905 | } | 614 | 1.23k | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 6 | } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.23M | { | 609 | 1.23M | if (m_buffer) | 610 | 562k | { | 611 | 562k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 562k | m_buffer = nullptr; | 613 | 562k | } | 614 | 1.23M | } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 385 | { | 609 | 385 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 385 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 31 | { | 609 | 31 | if (m_buffer) | 610 | 30 | { | 611 | 30 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 30 | m_buffer = nullptr; | 613 | 30 | } | 614 | 31 | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 583k | { | 609 | 583k | if (m_buffer) | 610 | 237k | { | 611 | 237k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 237k | m_buffer = nullptr; | 613 | 237k | } | 614 | 583k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 720 | { | 609 | 720 | if (m_buffer) | 610 | 41 | { | 611 | 41 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 41 | m_buffer = nullptr; | 613 | 41 | } | 614 | 720 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 50 | { | 609 | 50 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 50 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 249 | { | 609 | 249 | if (m_buffer) | 610 | 72 | { | 611 | 72 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 72 | m_buffer = nullptr; | 613 | 72 | } | 614 | 249 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 91.2k | { | 609 | 91.2k | if (m_buffer) | 610 | 5.05k | { | 611 | 5.05k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.05k | m_buffer = nullptr; | 613 | 5.05k | } | 614 | 91.2k | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 572 | { | 609 | 572 | if (m_buffer) | 610 | 90 | { | 611 | 90 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 90 | m_buffer = nullptr; | 613 | 90 | } | 614 | 572 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.21k | { | 609 | 2.21k | if (m_buffer) | 610 | 332 | { | 611 | 332 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 332 | m_buffer = nullptr; | 613 | 332 | } | 614 | 2.21k | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E17_deallocateBufferEv Line | Count | Source | 608 | 27 | { | 609 | 27 | if (m_buffer) | 610 | 27 | { | 611 | 27 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 27 | m_buffer = nullptr; | 613 | 27 | } | 614 | 27 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 26 | { | 609 | 26 | if (m_buffer) | 610 | 26 | { | 611 | 26 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 26 | m_buffer = nullptr; | 613 | 26 | } | 614 | 26 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5.82k | { | 609 | 5.82k | if (m_buffer) | 610 | 2.80k | { | 611 | 2.80k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.80k | m_buffer = nullptr; | 613 | 2.80k | } | 614 | 5.82k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 15 | { | 609 | 15 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 15 | } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 268 | { | 609 | 268 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 268 | } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 219 | { | 609 | 219 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 219 | } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 88 | { | 609 | 88 | if (m_buffer) | 610 | 60 | { | 611 | 60 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 60 | m_buffer = nullptr; | 613 | 60 | } | 614 | 88 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 31 | { | 609 | 31 | if (m_buffer) | 610 | 9 | { | 611 | 9 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9 | m_buffer = nullptr; | 613 | 9 | } | 614 | 31 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 707 | { | 609 | 707 | if (m_buffer) | 610 | 700 | { | 611 | 700 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 700 | m_buffer = nullptr; | 613 | 700 | } | 614 | 707 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 214k | { | 609 | 214k | if (m_buffer) | 610 | 21.7k | { | 611 | 21.7k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 21.7k | m_buffer = nullptr; | 613 | 21.7k | } | 614 | 214k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 101 | { | 609 | 101 | if (m_buffer) | 610 | 61 | { | 611 | 61 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 61 | m_buffer = nullptr; | 613 | 61 | } | 614 | 101 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 65 | { | 609 | 65 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 65 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 57.6k | { | 609 | 57.6k | if (m_buffer) | 610 | 57.6k | { | 611 | 57.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 57.6k | m_buffer = nullptr; | 613 | 57.6k | } | 614 | 57.6k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42.6k | { | 609 | 42.6k | if (m_buffer) | 610 | 42.6k | { | 611 | 42.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 42.6k | m_buffer = nullptr; | 613 | 42.6k | } | 614 | 42.6k | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5.86k | { | 609 | 5.86k | if (m_buffer) | 610 | 34 | { | 611 | 34 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 34 | m_buffer = nullptr; | 613 | 34 | } | 614 | 5.86k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.79k | { | 609 | 6.79k | if (m_buffer) | 610 | 829 | { | 611 | 829 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 829 | m_buffer = nullptr; | 613 | 829 | } | 614 | 6.79k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4.07k | { | 609 | 4.07k | if (m_buffer) | 610 | 815 | { | 611 | 815 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 815 | m_buffer = nullptr; | 613 | 815 | } | 614 | 4.07k | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 315 | { | 609 | 315 | if (m_buffer) | 610 | 57 | { | 611 | 57 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 57 | m_buffer = nullptr; | 613 | 57 | } | 614 | 315 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 52 | { | 609 | 52 | if (m_buffer) | 610 | 52 | { | 611 | 52 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 52 | m_buffer = nullptr; | 613 | 52 | } | 614 | 52 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 65 | { | 609 | 65 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 65 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 119 | { | 609 | 119 | if (m_buffer) | 610 | 100 | { | 611 | 100 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 100 | m_buffer = nullptr; | 613 | 100 | } | 614 | 119 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 85.5k | { | 609 | 85.5k | if (m_buffer) | 610 | 27.7k | { | 611 | 27.7k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 27.7k | m_buffer = nullptr; | 613 | 27.7k | } | 614 | 85.5k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 255 | { | 609 | 255 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 255 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7 | { | 609 | 7 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 7 | } |
Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 165 | { | 609 | 165 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 165 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.9k | { | 609 | 13.9k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 13.9k | } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7 | { | 609 | 7 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 7 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11 | { | 609 | 11 | if (m_buffer) | 610 | 11 | { | 611 | 11 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11 | m_buffer = nullptr; | 613 | 11 | } | 614 | 11 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 965 | { | 609 | 965 | if (m_buffer) | 610 | 25 | { | 611 | 25 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 25 | m_buffer = nullptr; | 613 | 25 | } | 614 | 965 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 598 | { | 609 | 598 | if (m_buffer) | 610 | 570 | { | 611 | 570 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 570 | m_buffer = nullptr; | 613 | 570 | } | 614 | 598 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 19 | { | 609 | 19 | if (m_buffer) | 610 | 12 | { | 611 | 12 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 12 | m_buffer = nullptr; | 613 | 12 | } | 614 | 19 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 2 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 2 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 2 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.18k | { | 609 | 1.18k | if (m_buffer) | 610 | 285 | { | 611 | 285 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 285 | m_buffer = nullptr; | 613 | 285 | } | 614 | 1.18k | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.73k | { | 609 | 1.73k | if (m_buffer) | 610 | 1.17k | { | 611 | 1.17k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.17k | m_buffer = nullptr; | 613 | 1.17k | } | 614 | 1.73k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 310 | { | 609 | 310 | if (m_buffer) | 610 | 53 | { | 611 | 53 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 53 | m_buffer = nullptr; | 613 | 53 | } | 614 | 310 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 91.8k | { | 609 | 91.8k | if (m_buffer) | 610 | 1.33k | { | 611 | 1.33k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.33k | m_buffer = nullptr; | 613 | 1.33k | } | 614 | 91.8k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 282 | { | 609 | 282 | if (m_buffer) | 610 | 189 | { | 611 | 189 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 189 | m_buffer = nullptr; | 613 | 189 | } | 614 | 282 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 421 | { | 609 | 421 | if (m_buffer) | 610 | 417 | { | 611 | 417 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 417 | m_buffer = nullptr; | 613 | 417 | } | 614 | 421 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.24k | { | 609 | 1.24k | if (m_buffer) | 610 | 243 | { | 611 | 243 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 243 | m_buffer = nullptr; | 613 | 243 | } | 614 | 1.24k | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 12 | { | 609 | 12 | if (m_buffer) | 610 | 12 | { | 611 | 12 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 12 | m_buffer = nullptr; | 613 | 12 | } | 614 | 12 | } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.9k | { | 609 | 13.9k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 13.9k | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 740 | { | 609 | 740 | if (m_buffer) | 610 | 735 | { | 611 | 735 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 735 | m_buffer = nullptr; | 613 | 735 | } | 614 | 740 | } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8 | { | 609 | 8 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 8 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18 | { | 609 | 18 | if (m_buffer) | 610 | 18 | { | 611 | 18 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 18 | m_buffer = nullptr; | 613 | 18 | } | 614 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3 | { | 609 | 3 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 3 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 113k | { | 609 | 113k | if (m_buffer) | 610 | 3.69k | { | 611 | 3.69k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.69k | m_buffer = nullptr; | 613 | 3.69k | } | 614 | 113k | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 452k | { | 609 | 452k | if (m_buffer) | 610 | 124k | { | 611 | 124k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 124k | m_buffer = nullptr; | 613 | 124k | } | 614 | 452k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 452k | { | 609 | 452k | if (m_buffer) | 610 | 124k | { | 611 | 124k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 124k | m_buffer = nullptr; | 613 | 124k | } | 614 | 452k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.5k | { | 609 | 13.5k | if (m_buffer) | 610 | 11.6k | { | 611 | 11.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11.6k | m_buffer = nullptr; | 613 | 11.6k | } | 614 | 13.5k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10.8k | { | 609 | 10.8k | if (m_buffer) | 610 | 7.23k | { | 611 | 7.23k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7.23k | m_buffer = nullptr; | 613 | 7.23k | } | 614 | 10.8k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 278 | { | 609 | 278 | if (m_buffer) | 610 | 105 | { | 611 | 105 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 105 | m_buffer = nullptr; | 613 | 105 | } | 614 | 278 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.86k | { | 609 | 1.86k | if (m_buffer) | 610 | 1.86k | { | 611 | 1.86k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.86k | m_buffer = nullptr; | 613 | 1.86k | } | 614 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 504 | { | 609 | 504 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 504 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 146 | { | 609 | 146 | if (m_buffer) | 610 | 15 | { | 611 | 15 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 15 | m_buffer = nullptr; | 613 | 15 | } | 614 | 146 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 146 | { | 609 | 146 | if (m_buffer) | 610 | 132 | { | 611 | 132 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 132 | m_buffer = nullptr; | 613 | 132 | } | 614 | 146 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 738 | { | 609 | 738 | if (m_buffer) | 610 | 738 | { | 611 | 738 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 738 | m_buffer = nullptr; | 613 | 738 | } | 614 | 738 | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.3k | { | 609 | 18.3k | if (m_buffer) | 610 | 18.3k | { | 611 | 18.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 18.3k | m_buffer = nullptr; | 613 | 18.3k | } | 614 | 18.3k | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 91.8k | { | 609 | 91.8k | if (m_buffer) | 610 | 174 | { | 611 | 174 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 174 | m_buffer = nullptr; | 613 | 174 | } | 614 | 91.8k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 39.7k | { | 609 | 39.7k | if (m_buffer) | 610 | 2.36k | { | 611 | 2.36k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.36k | m_buffer = nullptr; | 613 | 2.36k | } | 614 | 39.7k | } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 206 | { | 609 | 206 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 206 | } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 37 | { | 609 | 37 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 37 | } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5 | { | 609 | 5 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 5 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 197k | { | 609 | 197k | if (m_buffer) | 610 | 197k | { | 611 | 197k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 197k | m_buffer = nullptr; | 613 | 197k | } | 614 | 197k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.78k | { | 609 | 1.78k | if (m_buffer) | 610 | 183 | { | 611 | 183 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 183 | m_buffer = nullptr; | 613 | 183 | } | 614 | 1.78k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 162 | { | 609 | 162 | if (m_buffer) | 610 | 96 | { | 611 | 96 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 96 | m_buffer = nullptr; | 613 | 96 | } | 614 | 162 | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.00k | { | 609 | 3.00k | if (m_buffer) | 610 | 3.00k | { | 611 | 3.00k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.00k | m_buffer = nullptr; | 613 | 3.00k | } | 614 | 3.00k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 242 | { | 609 | 242 | if (m_buffer) | 610 | 109 | { | 611 | 109 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 109 | m_buffer = nullptr; | 613 | 109 | } | 614 | 242 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 133 | { | 609 | 133 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 133 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.27k | { | 609 | 3.27k | if (m_buffer) | 610 | 65 | { | 611 | 65 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 65 | m_buffer = nullptr; | 613 | 65 | } | 614 | 3.27k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 294 | { | 609 | 294 | if (m_buffer) | 610 | 294 | { | 611 | 294 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 294 | m_buffer = nullptr; | 613 | 294 | } | 614 | 294 | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.0k | { | 609 | 11.0k | if (m_buffer) | 610 | 8.23k | { | 611 | 8.23k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8.23k | m_buffer = nullptr; | 613 | 8.23k | } | 614 | 11.0k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.2k | { | 609 | 18.2k | if (m_buffer) | 610 | 18.2k | { | 611 | 18.2k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 18.2k | m_buffer = nullptr; | 613 | 18.2k | } | 614 | 18.2k | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 187 | { | 609 | 187 | if (m_buffer) | 610 | 144 | { | 611 | 144 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 144 | m_buffer = nullptr; | 613 | 144 | } | 614 | 187 | } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3 | { | 609 | 3 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 3 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 426 | { | 609 | 426 | if (m_buffer) | 610 | 88 | { | 611 | 88 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 88 | m_buffer = nullptr; | 613 | 88 | } | 614 | 426 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 71 | { | 609 | 71 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 71 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 917 | { | 609 | 917 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 917 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42 | { | 609 | 42 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 42 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 144 | { | 609 | 144 | if (m_buffer) | 610 | 96 | { | 611 | 96 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 96 | m_buffer = nullptr; | 613 | 96 | } | 614 | 144 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 940 | { | 609 | 940 | if (m_buffer) | 610 | 899 | { | 611 | 899 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 899 | m_buffer = nullptr; | 613 | 899 | } | 614 | 940 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 948 | { | 609 | 948 | if (m_buffer) | 610 | 903 | { | 611 | 903 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 903 | m_buffer = nullptr; | 613 | 903 | } | 614 | 948 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 393 | { | 609 | 393 | if (m_buffer) | 610 | 370 | { | 611 | 370 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 370 | m_buffer = nullptr; | 613 | 370 | } | 614 | 393 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 393 | { | 609 | 393 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 393 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28.6k | { | 609 | 28.6k | if (m_buffer) | 610 | 27.2k | { | 611 | 27.2k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 27.2k | m_buffer = nullptr; | 613 | 27.2k | } | 614 | 28.6k | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.6k | { | 609 | 13.6k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 13.6k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 706 | { | 609 | 706 | if (m_buffer) | 610 | 227 | { | 611 | 227 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 227 | m_buffer = nullptr; | 613 | 227 | } | 614 | 706 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 439 | { | 609 | 439 | if (m_buffer) | 610 | 272 | { | 611 | 272 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 272 | m_buffer = nullptr; | 613 | 272 | } | 614 | 439 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 214 | { | 609 | 214 | if (m_buffer) | 610 | 110 | { | 611 | 110 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 110 | m_buffer = nullptr; | 613 | 110 | } | 614 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 214 | { | 609 | 214 | if (m_buffer) | 610 | 208 | { | 611 | 208 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 208 | m_buffer = nullptr; | 613 | 208 | } | 614 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 214 | { | 609 | 214 | if (m_buffer) | 610 | 117 | { | 611 | 117 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 117 | m_buffer = nullptr; | 613 | 117 | } | 614 | 214 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 214 | { | 609 | 214 | if (m_buffer) | 610 | 172 | { | 611 | 172 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 172 | m_buffer = nullptr; | 613 | 172 | } | 614 | 214 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 108 | { | 609 | 108 | if (m_buffer) | 610 | 108 | { | 611 | 108 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 108 | m_buffer = nullptr; | 613 | 108 | } | 614 | 108 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.50k | { | 609 | 1.50k | if (m_buffer) | 610 | 511 | { | 611 | 511 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 511 | m_buffer = nullptr; | 613 | 511 | } | 614 | 1.50k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.0k | { | 609 | 18.0k | if (m_buffer) | 610 | 637 | { | 611 | 637 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 637 | m_buffer = nullptr; | 613 | 637 | } | 614 | 18.0k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 406 | { | 609 | 406 | if (m_buffer) | 610 | 330 | { | 611 | 330 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 330 | m_buffer = nullptr; | 613 | 330 | } | 614 | 406 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 985 | { | 609 | 985 | if (m_buffer) | 610 | 806 | { | 611 | 806 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 806 | m_buffer = nullptr; | 613 | 806 | } | 614 | 985 | } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 388 | { | 609 | 388 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 388 | } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8 | { | 609 | 8 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 8 | } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 405 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.80k | { | 609 | 2.80k | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2.80k | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.80k | { | 609 | 2.80k | if (m_buffer) | 610 | 2.80k | { | 611 | 2.80k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.80k | m_buffer = nullptr; | 613 | 2.80k | } | 614 | 2.80k | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 464 | { | 609 | 464 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 464 | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 405 | } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 405 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 40 | { | 609 | 40 | if (m_buffer) | 610 | 8 | { | 611 | 8 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8 | m_buffer = nullptr; | 613 | 8 | } | 614 | 40 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 159 | { | 609 | 159 | if (m_buffer) | 610 | 56 | { | 611 | 56 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 56 | m_buffer = nullptr; | 613 | 56 | } | 614 | 159 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 159 | { | 609 | 159 | if (m_buffer) | 610 | 50 | { | 611 | 50 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 50 | m_buffer = nullptr; | 613 | 50 | } | 614 | 159 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 159 | { | 609 | 159 | if (m_buffer) | 610 | 52 | { | 611 | 52 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 52 | m_buffer = nullptr; | 613 | 52 | } | 614 | 159 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 50 | { | 609 | 50 | if (m_buffer) | 610 | 50 | { | 611 | 50 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 50 | m_buffer = nullptr; | 613 | 50 | } | 614 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9 | { | 609 | 9 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 9 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3 | { | 609 | 3 | if (m_buffer) | 610 | 3 | { | 611 | 3 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3 | m_buffer = nullptr; | 613 | 3 | } | 614 | 3 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 298 | { | 609 | 298 | if (m_buffer) | 610 | 237 | { | 611 | 237 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 237 | m_buffer = nullptr; | 613 | 237 | } | 614 | 298 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 345k | { | 609 | 345k | if (m_buffer) | 610 | 146k | { | 611 | 146k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 146k | m_buffer = nullptr; | 613 | 146k | } | 614 | 345k | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 57 | { | 609 | 57 | if (m_buffer) | 610 | 57 | { | 611 | 57 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 57 | m_buffer = nullptr; | 613 | 57 | } | 614 | 57 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 61 | { | 609 | 61 | if (m_buffer) | 610 | 61 | { | 611 | 61 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 61 | m_buffer = nullptr; | 613 | 61 | } | 614 | 61 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 10 | { | 611 | 10 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10 | m_buffer = nullptr; | 613 | 10 | } | 614 | 10 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 10 | { | 611 | 10 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10 | m_buffer = nullptr; | 613 | 10 | } | 614 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7 | { | 609 | 7 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 878 | { | 609 | 878 | if (m_buffer) | 610 | 878 | { | 611 | 878 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 878 | m_buffer = nullptr; | 613 | 878 | } | 614 | 878 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 328 | { | 611 | 328 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 328 | m_buffer = nullptr; | 613 | 328 | } | 614 | 405 | } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 405 | { | 609 | 405 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 405 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E17_deallocateBufferEv Line | Count | Source | 608 | 46 | { | 609 | 46 | if (m_buffer) | 610 | 46 | { | 611 | 46 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 46 | m_buffer = nullptr; | 613 | 46 | } | 614 | 46 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 463 | { | 609 | 463 | if (m_buffer) | 610 | 413 | { | 611 | 413 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 413 | m_buffer = nullptr; | 613 | 413 | } | 614 | 463 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 417 | { | 609 | 417 | if (m_buffer) | 610 | 417 | { | 611 | 417 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 417 | m_buffer = nullptr; | 613 | 417 | } | 614 | 417 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 190 | { | 609 | 190 | if (m_buffer) | 610 | 166 | { | 611 | 166 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 166 | m_buffer = nullptr; | 613 | 166 | } | 614 | 190 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9 | { | 609 | 9 | if (m_buffer) | 610 | 9 | { | 611 | 9 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9 | m_buffer = nullptr; | 613 | 9 | } | 614 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 26 | { | 611 | 26 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 26 | m_buffer = nullptr; | 613 | 26 | } | 614 | 28 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 381 | { | 609 | 381 | if (m_buffer) | 610 | 373 | { | 611 | 373 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 373 | m_buffer = nullptr; | 613 | 373 | } | 614 | 381 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.91k | { | 609 | 2.91k | if (m_buffer) | 610 | 2.86k | { | 611 | 2.86k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.86k | m_buffer = nullptr; | 613 | 2.86k | } | 614 | 2.91k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.04k | { | 609 | 3.04k | if (m_buffer) | 610 | 3.04k | { | 611 | 3.04k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.04k | m_buffer = nullptr; | 613 | 3.04k | } | 614 | 3.04k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_7OperandENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE17_deallocateBufferEv |
615 | | static inline T* _allocate(Index count) |
616 | 39.7M | { |
617 | 39.7M | return AllocateMethod<T, TAllocator>::allocateArray(count); |
618 | 39.7M | } _ZN5Slang4ListImNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 26.2M | { | 617 | 26.2M | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 26.2M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 66.4k | { | 617 | 66.4k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 66.4k | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 172 | { | 617 | 172 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 172 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.15k | { | 617 | 1.15k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.15k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 23.7k | { | 617 | 23.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 23.7k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5.99k | { | 617 | 5.99k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5.99k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28.6k | { | 617 | 28.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28.6k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.31k | { | 617 | 1.31k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.31k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 251k | { | 617 | 251k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 251k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 36.5k | { | 617 | 36.5k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 36.5k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 247 | { | 617 | 247 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 247 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 163 | { | 617 | 163 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 163 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 801k | { | 617 | 801k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 801k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 1.04k | { | 617 | 1.04k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.04k | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.04k | { | 617 | 1.04k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.04k | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.04k | { | 617 | 1.04k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.04k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6.92M | { | 617 | 6.92M | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6.92M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.07k | { | 617 | 2.07k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.07k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 50.0k | { | 617 | 50.0k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 50.0k | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.47k | { | 617 | 2.47k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.47k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.84k | { | 617 | 1.84k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.84k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.10k | { | 617 | 1.10k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.10k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.16M | { | 617 | 1.16M | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.16M | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10.0k | { | 617 | 10.0k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10.0k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 99.1k | { | 617 | 99.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 99.1k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22 | { | 617 | 22 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 30 | { | 617 | 30 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 30 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.49k | { | 617 | 1.49k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.49k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 30.9k | { | 617 | 30.9k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 30.9k | } |
_ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 206 | { | 617 | 206 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 206 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 445 | { | 617 | 445 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 445 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 751 | { | 617 | 751 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 751 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 12 | { | 617 | 12 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 12 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 40.5k | { | 617 | 40.5k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 40.5k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 46.5k | { | 617 | 46.5k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 46.5k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 706k | { | 617 | 706k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 706k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28.1k | { | 617 | 28.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28.1k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 116k | { | 617 | 116k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 116k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 565 | { | 617 | 565 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 565 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 475 | { | 617 | 475 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 475 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 40 | { | 617 | 40 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 40 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 542 | { | 617 | 542 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 542 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 65.1k | { | 617 | 65.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 65.1k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 296k | { | 617 | 296k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 296k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 228 | { | 617 | 228 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 228 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 16 | { | 617 | 16 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 16 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 32 | { | 617 | 32 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 32 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8.44k | { | 617 | 8.44k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8.44k | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 34 | { | 617 | 34 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 34 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 21 | { | 617 | 21 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 21 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 69.4k | { | 617 | 69.4k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 69.4k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.49k | { | 617 | 1.49k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.49k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 827k | { | 617 | 827k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 827k | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 900 | { | 617 | 900 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 900 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 410 | { | 617 | 410 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 410 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 925 | { | 617 | 925 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 925 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.07k | { | 617 | 1.07k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.07k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 118 | { | 617 | 118 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 118 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 70 | { | 617 | 70 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 70 | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.70k | { | 617 | 1.70k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.70k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.85k | { | 617 | 1.85k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.85k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 427 | { | 617 | 427 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 427 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 118 | { | 617 | 118 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 118 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 458 | { | 617 | 458 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 458 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 53 | { | 617 | 53 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 53 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11 | { | 617 | 11 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 524 | { | 617 | 524 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 524 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 71 | { | 617 | 71 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 71 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 51.4k | { | 617 | 51.4k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 51.4k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 39.1k | { | 617 | 39.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 39.1k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 247 | { | 617 | 247 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 247 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9.78k | { | 617 | 9.78k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9.78k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7.79k | { | 617 | 7.79k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7.79k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 33 | { | 617 | 33 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 33 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 145 | { | 617 | 145 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 145 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 905 | { | 617 | 905 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 905 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 246 | { | 617 | 246 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 246 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22 | { | 617 | 22 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 30 | { | 617 | 30 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 30 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 562k | { | 617 | 562k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 562k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 237k | { | 617 | 237k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 237k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 41 | { | 617 | 41 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 41 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 72 | { | 617 | 72 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 72 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5.05k | { | 617 | 5.05k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5.05k | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 90 | { | 617 | 90 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 90 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E9_allocateEl Line | Count | Source | 616 | 27 | { | 617 | 27 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 27 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 26 | { | 617 | 26 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 26 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 332 | { | 617 | 332 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 332 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.80k | { | 617 | 2.80k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.80k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 60 | { | 617 | 60 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 60 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9 | { | 617 | 9 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 700 | { | 617 | 700 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 700 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 21.7k | { | 617 | 21.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 21.7k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 61 | { | 617 | 61 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 61 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 57.6k | { | 617 | 57.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 57.6k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 42.6k | { | 617 | 42.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 42.6k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 829 | { | 617 | 829 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 829 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 34 | { | 617 | 34 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 34 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 57 | { | 617 | 57 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 57 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 52 | { | 617 | 52 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 52 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 100 | { | 617 | 100 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 100 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 27.7k | { | 617 | 27.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 27.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11 | { | 617 | 11 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 25 | { | 617 | 25 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 25 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 12 | { | 617 | 12 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 285 | { | 617 | 285 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 285 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.17k | { | 617 | 1.17k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.17k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 53 | { | 617 | 53 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 53 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.33k | { | 617 | 1.33k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.33k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 189 | { | 617 | 189 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 189 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 417 | { | 617 | 417 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 417 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 243 | { | 617 | 243 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 243 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 12 | { | 617 | 12 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 735 | { | 617 | 735 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 735 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 80 | { | 617 | 80 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 80 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 18 | { | 617 | 18 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 18 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.69k | { | 617 | 3.69k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.69k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 124k | { | 617 | 124k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 124k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 124k | { | 617 | 124k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 124k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11.6k | { | 617 | 11.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11.6k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7.23k | { | 617 | 7.23k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7.23k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 105 | { | 617 | 105 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 105 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.86k | { | 617 | 1.86k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.86k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 15 | { | 617 | 15 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 15 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 132 | { | 617 | 132 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 132 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 738 | { | 617 | 738 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 738 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 815 | { | 617 | 815 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 815 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 174 | { | 617 | 174 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 174 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.36k | { | 617 | 2.36k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.36k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 18.3k | { | 617 | 18.3k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 18.3k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE9_allocateEl slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 197k | { | 617 | 197k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 197k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 183 | { | 617 | 183 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 183 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 90 | { | 617 | 90 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 90 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 66 | { | 617 | 66 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 66 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 15 | { | 617 | 15 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 15 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 899 | { | 617 | 899 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 899 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 903 | { | 617 | 903 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 903 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 570 | { | 617 | 570 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 570 | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 372 | { | 617 | 372 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 372 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.34k | { | 617 | 3.34k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.34k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 227 | { | 617 | 227 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 227 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 27.2k | { | 617 | 27.2k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 27.2k | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 277 | { | 617 | 277 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 277 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 108 | { | 617 | 108 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 108 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 208 | { | 617 | 208 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 208 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 110 | { | 617 | 110 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 110 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 172 | { | 617 | 172 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 172 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 117 | { | 617 | 117 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 117 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 511 | { | 617 | 511 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 511 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 362 | { | 617 | 362 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 362 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 810 | { | 617 | 810 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 810 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 637 | { | 617 | 637 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 637 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 330 | { | 617 | 330 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 330 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 50 | { | 617 | 50 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9 | { | 617 | 9 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.80k | { | 617 | 2.80k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.80k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 50 | { | 617 | 50 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 50 | { | 617 | 50 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 50 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 56 | { | 617 | 56 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 56 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 52 | { | 617 | 52 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 52 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3 | { | 617 | 3 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 146k | { | 617 | 146k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 146k | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 241 | { | 617 | 241 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 241 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 878 | { | 617 | 878 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 878 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7.07k | { | 617 | 7.07k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7.07k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 147 | { | 617 | 147 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 147 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 61 | { | 617 | 61 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 61 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 61 | { | 617 | 61 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 61 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9.33k | { | 617 | 9.33k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9.33k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 73 | { | 617 | 73 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 73 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 377 | { | 617 | 377 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 377 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 413 | { | 617 | 413 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 413 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E9_allocateEl Line | Count | Source | 616 | 130 | { | 617 | 130 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 130 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 417 | { | 617 | 417 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 417 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 252 | { | 617 | 252 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 252 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 72 | { | 617 | 72 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 72 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 65 | { | 617 | 65 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 65 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 166 | { | 617 | 166 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 166 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.18k | { | 617 | 1.18k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.18k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 281 | { | 617 | 281 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 281 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.26k | { | 617 | 2.26k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.26k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.87k | { | 617 | 1.87k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.87k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9 | { | 617 | 9 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 26 | { | 617 | 26 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 26 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 373 | { | 617 | 373 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 373 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 21 | { | 617 | 21 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 21 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 25 | { | 617 | 25 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 25 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 18.2k | { | 617 | 18.2k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 18.2k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8.22k | { | 617 | 8.22k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8.22k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.86k | { | 617 | 2.86k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.86k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 294 | { | 617 | 294 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 294 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.04k | { | 617 | 3.04k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.04k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.00k | { | 617 | 3.00k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.00k | } |
|
619 | | static void _free(T* buffer, Index count) |
620 | | { |
621 | | return AllocateMethod<T, TAllocator>::deallocateArray(buffer, count); |
622 | | } |
623 | | |
624 | | template<typename... Args> |
625 | | void _init(const T& val, Args... args) |
626 | 15.2k | { |
627 | 15.2k | add(val); |
628 | 15.2k | _init(args...); |
629 | 15.2k | } _ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 2.97k | { | 627 | 2.97k | add(val); | 628 | 2.97k | _init(args...); | 629 | 2.97k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ _ZN5Slang4ListIjNS_17StandardAllocatorEE5_initIJEEEvRKjDpT_ Line | Count | Source | 626 | 11.5k | { | 627 | 11.5k | add(val); | 628 | 11.5k | _init(args...); | 629 | 11.5k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5_initIJjEEEvRKjDpT_ Line | Count | Source | 626 | 2 | { | 627 | 2 | add(val); | 628 | 2 | _init(args...); | 629 | 2 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 62 | { | 627 | 62 | add(val); | 628 | 62 | _init(args...); | 629 | 62 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 20 | { | 627 | 20 | add(val); | 628 | 20 | _init(args...); | 629 | 20 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 7 | { | 627 | 7 | add(val); | 628 | 7 | _init(args...); | 629 | 7 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 111 | { | 627 | 111 | add(val); | 628 | 111 | _init(args...); | 629 | 111 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 116 | { | 627 | 116 | add(val); | 628 | 116 | _init(args...); | 629 | 116 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 32 | { | 627 | 32 | add(val); | 628 | 32 | _init(args...); | 629 | 32 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 29 | { | 627 | 29 | add(val); | 628 | 29 | _init(args...); | 629 | 29 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 222 | { | 627 | 222 | add(val); | 628 | 222 | _init(args...); | 629 | 222 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 70 | { | 627 | 70 | add(val); | 628 | 70 | _init(args...); | 629 | 70 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_7IRParamEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_15IRInterfaceTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_6IRTypeEPNS_11IRTupleTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_11IRTupleTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_9IRIntTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_6IRFuncES2_S2_S2_S2_EEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_S2_S2_EEEvRKS2_DpT_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_S2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_17IRTargetTupleTypeEPNS_18IRNativeStringTypeES9_EEEvRKS2_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_18IRNativeStringTypeES7_EEEvRKS2_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_18IRNativeStringTypeEEEEvRKS2_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_17IRTargetTupleTypeEEEEvRKS2_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
|
630 | | |
631 | 15.0k | void _init() {}_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 2.97k | void _init() {} |
Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initEv _ZN5Slang4ListIjNS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 11.5k | void _init() {} |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 1 | void _init() {} |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 1 | void _init() {} |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 62 | void _init() {} |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 116 | void _init() {} |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 32 | void _init() {} |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 222 | void _init() {} |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 70 | void _init() {} |
|
632 | | }; |
633 | | |
634 | | template<typename T> |
635 | | T calcMin(const List<T>& list) |
636 | | { |
637 | | T minVal = list.getFirst(); |
638 | | for (Index i = 1; i < list.getCount(); i++) |
639 | | if (list[i] < minVal) |
640 | | minVal = list[i]; |
641 | | return minVal; |
642 | | } |
643 | | |
644 | | template<typename T> |
645 | | T calcMax(const List<T>& list) |
646 | | { |
647 | | T maxVal = list.getFirst(); |
648 | | for (Index i = 1; i < list.getCount(); i++) |
649 | | if (list[i] > maxVal) |
650 | | maxVal = list[i]; |
651 | | return maxVal; |
652 | | } |
653 | | } // namespace Slang |
654 | | |
655 | | #endif |